user5319603
user5319603

Reputation:

Opening Podfile in Xcode

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

Answers (3)

Yeis Gallegos
Yeis Gallegos

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

mokagio
mokagio

Reputation: 17471

The Podfile is located in the root of the Pods project.

enter image description here

An easy way to open it is via "Open Quickly" (Shift Cmd O) typing Podfile.

Upvotes: 5

mipadi
mipadi

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

Related Questions