xcode周辺

Carthageを使ってフレームワークを導入

導入するもの 1. Alamofire 2. ObjectMapper 3. RxSwift プロジェクトの配下で以下のコマンドをうつ $ touch Cartfile $ vim Cartfile Vimに導入したいライブラリを記載 github "Alamofire/Alamofire" github "Hearst-DD/ObjectMapper" github "ReactiveX/Rx…

.gitignoreの作り方

gitignoreファイルの作成 git管理下でプロジェクトを作成 atomなどのエディタで.gitignoreファイルを作成 以下をエディタに記載し、.gitディレクトリと同じ階層におく *.xcodeproj/* !*.xcodeproj/project.pbxproj !*.xcworkspace/contents.xcworkspacedata …

plistのパスの変更

plistを新しいディレクトリなどに移して、パスが変わってしまった時の対処法。 The file “Info.plist” couldn’t be opened because there is no such file.というエラーが出た時 target→Packagingの中にあるinfo.plist File項目のパスを変更しなければならな…