事前準備
cocoapods
を事前にインストールされていること。
環境
Xcode 6.4
swift 1.2
cocoapods 0.38.2
Realm 0.95.0 (2015/09/13現在の最新)
インストール
以下のURLを参照。
https://realm.io/jp/docs/swift/latest/
まずはXcodeのプロジェクトを作成
ターミナルを起動して作成したプロジェクトのディレクトリへ移動
$ cd XXX(作成したディレクトリ)
移動後、cocoapodsのPodfileを作成
$ pod init
Podfileがプロジェクト直下に作成されるので
プロジェクトファイルを以下のように編集
platform :ios, ‘8.0’ ##プロジェクトで想定するiOSのバージョン(今回はiOS 8.0を想定)
use_frameworks! ##Swiftライブラリを使用するために必要な記述
target 'プロジェクト名' do
pod 'RealmSwift'
end
target 'プロジェクト名Tests' do
pod 'RealmSwift'
end
編集が完了したら、再びターミナルよりインストールを開始
$ pod install
Updating local specs repositories
Analyzing dependencies
Downloading dependencies
Installing Realm (0.95.0)
Installing RealmSwift (0.95.0)
Generating Pods project
Integrating client project
[!] Please close any current Xcode sessions and use `プロジェクト名.xcworkspace` for this project from now on.
Sending stats
CocoaPodsによって作られた.xcworkspaceファイルを開く