William Jockusch
William Jockusch

Reputation: 27295

Xcode projects -- what is a "perspectivev3 file"

When I look at the package of one of my projects, I sometimes see one of these. What is it?

Upvotes: 2

Views: 1137

Answers (2)

sudo rm -rf
sudo rm -rf

Reputation: 29524

Those are files that Xcode creates. They are user-specific project settings. No need to worry about them.

Edit: Based off of this question, I would add these to your .gitignore/.hgignore:

.DS_Store
*.swp
*~.nib

build/

*.pbxuser
*.perspective
*.perspectivev3

Upvotes: 0

Matthias Bauch
Matthias Bauch

Reputation: 90117

This is the file where XCode saves the preferences of your "perspective". Where you windows are, if your console is open, where it is on the screen.
Which groups are open in the side bar etc.
Basically everything you need that xcode looks the same when you open it next time.

There is another file name username.pbxuser. Xcode stores for example the code bookmarks in it.

You don't need them to compile the project. And you should not put them into version control either.

Upvotes: 3

Related Questions