4
7

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 3 years have passed since last update.

【swift】 ビルドができず、unable to open fileのエラー

Posted at

1.状況

git cloneしてswiftのコーディングをしようとしたが、
ファイルが開かず、シミュレーションも起動しない。

スクリーンショット 2020-07-23 16.25.34.png
Showing All Issues
/Documents/practice_swift/Pods/Target Support Files/Pods-todoapp/Pods-todoapp.debug.xcconfig: unable to open file (in target "todoapp" in project "todoapp")

2.原因

cocoapodsのインストールがなかった。

cocoapodsとは、

iOSアプリ作成のためのライブラリ管理をしてくれるもの
https://cocoapods.org/

cocoapodsのインストールをします。

 $ sudo gem install cocoapods

 $ sudo gem update –system
 $ sudo gem install -n /usr/local/bin cocoapods
 $ pod setup

git cloneしたプロジェクトファイルに移動してインストールをします。

 $ pod deintegrate
 $ pod install

結果は良さそう。DBの役割のRealmもインストールされている。

Downloading dependencies
Installing Realm (5.1.0)
Installing RealmSwift (5.1.0)
Generating Pods project
Integrating client project
Pod installation complete! There is 1 dependency from the Podfile and 2 total pods installed.

もう一度xcodeでビルディングしてみる
スクリーンショット 2020-07-23 16.36.41.png

ビルディング成功!やった!
スクリーンショット 2020-07-23 16.38.21.png

4
7
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?