14
14

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]iosProjectでParseを使う方法

Last updated at Posted at 2015-02-12

#cocoapodsでインストール
ターミナルから当該ProjectのPathに飛ぶ
cd projectPath
そこで、cocoapodsでParseをインストールする。コマンドは以下
$ touch Podfile // Podfileを作成します
$ vim Podfile // Podfileを編集します

`+ platform :ios, '8.0'

  • pod ‘Parse', '~> 1.6.2' // ,以降はバージョンの指定`

編集が終わったら、espキーを押す。後、:wqで保存

pod install //これでプロジェクトにライブラリをインストールできる

以上のやり方は、(http://qiita.com/knife0125/items/897348ba1fcd07eeaf01) 参照

#parseとの接続方法
Xcodeの方で、New File(cmd+N)して、Obj-Cでファイルを作成。ファイル名は何でもOK。ここではhogeとした。
hoge.mとProjectName-Bridging-Header.hという2つのファイルが生成される。
hoge.mというファイルは不要なので、削除する。また、ProjectName-Bridging-Header.hに下記コードを追加する。
ProjetName-Bridging-Header.swift
#import <Parse/Parse.h>
その次にAppDelegate.swiftに以下を追加

func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { var Id = “xxxxxxxxxxxxxxxxx” //applicationID var Key = “xxxxxxxxxxxxxxxxx” // Key
// MARK: - Parse Parse.setApplicationId(Id, clientKey: Key) PFUser.enableAutomaticUser() //以下はあらかじめ匿名ユーザーを作るものなので書かなくても接続はできます var defaultACL = PFACL() PFACL.setDefaultACL(defaultACL, withAccessForCurrentUser: true) return true }

14
14
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
14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?