Reputation:
Such a trivial concern should show up first on google, but the answer isn't on SO.
I am tired of using vim when Xcode is supposed to be an IDE (emphasis on I)
How do I open a Podfile in Xcode?
Upvotes: 9
Views: 20303
Reputation: 484
you can open with Xcode just get into your directory on the terminal and then just type
open -a Xcode <podfile>
Upvotes: 9
Reputation: 17471
The Podfile
is located in the root of the Pods project.
An easy way to open it is via "Open Quickly" (Shift Cmd O) typing Podfile.
Upvotes: 5
Reputation: 410662
If it's been added to the project, you can just click on it. Otherwise, open it using the File menu or drag its icon on top of Xcode's.
Upvotes: 0