如何打开Podfile进行编辑

时间:2016-07-11 12:35:13

标签: ios cocoapods

我在我的应用中使用了CocoaPods我注意到我无法打开pod file并且文件转向exec文件,如图像向下,我需要编辑它以添加新图书馆。

enter image description here

5 个答案:

答案 0 :(得分:27)

使用TextEdit 打开Podfile 使用终端

 $ cd "your_project_location"
 $ open -a TextEdit Podfile

答案 1 :(得分:10)

我想你会尝试这些步骤:

1- $ cd您的文件位置

2- $ open -a Xcode Podfile

答案 2 :(得分:8)

从终端

打开文件

vim Podfile

答案 3 :(得分:3)

1.从终端打开podfile

$ cd "your_project_location that contain podfile"
$ nano Podfile

2.您也可以使用xcode打开podfile

右键单击podfile并选择openwith xcode。

答案 4 :(得分:0)

将其拖放到TextEdit或在XCode中打开项目并在那里进行编辑。