#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 }