12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SwiftでCoreAPIを使う[認証編]

Last updated at Posted at 2015-05-12

追記:SwiftyDropboxもあります。beta版ですが、こちらの方がサンプルが多く使いやすいです。

1.DropboxSDKのimport

SwiftでObjective-CのFrameworkを読み込む方法
この記事を参考にさせてもらいました。m(__)m

2.認証

ボタンを押したらDropboxを接続させます。

AppDelegate.swift
let dbAcount = DBSession(appKey: "YOUR_APP_KEY", appSecret: "YOUR_APP_SECRET", root:"ROOT" )
        DBSession.setSharedSession(dbAcount)

ROOTkDBRootDropboxkDBRootAppFolderのどちらかです。

ViewContoroller.swift
@IBAction func MyButton(sender: UIButton) {
	if !DBSession.sharedSession().isLinked(){
            DBSession.sharedSession().linkFromController(self)
    }
}

こんな感じに出来上がりました!
Gyazo

12
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?