1
1

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.

RealmSwiftの使い方

Posted at

事前準備

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ファイルを開く

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?