【個人的備忘】CocoaPodsを使用してRealmSwiftをインポートする
1. CocoaPodsインストール
ターミナル起動
sudo gem update —system
※ruby gemアップデート
sudo gem install cocoapods
pod setup
2. プロジェクトにPodfile作成
※Xcode閉じておく
cd プロジェクトのディレクトリ
※例
cd Desktop/xxx
cd Desktop→ls→cd xxx
pod init
※Podfile作成
3. RealmSwiftインストール
vim Podfile
i
※編集モード(insert)
# Pods for XXの下に
pod 'RealmSwift'
※ # platform :ios, '9.0'などは
適宜アンコメントして記載すると警告が出なくて良い。
esc
※編集モード終了
:wq
もしくは(Shift+z)×2
※保存して終了
pod install
pod update
(適宜)
4. インポート文
import RealmSwift
5. 備考
下記とほぼ同工程です。
すでにPodfileが存在する場合など、適宜1, 2は省略してください。
Author And Source
この問題について(【個人的備忘】CocoaPodsを使用してRealmSwiftをインポートする), 我々は、より多くの情報をここで見つけました https://qiita.com/chukurimu1202/items/3fe30b03ef1f4808164b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .