mini998
mini998

Reputation: 561

Strange Bug(?) in Xcode ,Every new project opens with same existing code

I followed a tutorial to develop a simple application using Core Data in Xcode.

Now every time I open a "Navigation based" application with Core Data support, it opens with code I wrote for the sample app, including the Core Data stuff. So, when I create a blank application and run it just after creating it, it gives me the sample application I created.

Is this a bug or am I missing anything? This is driving me crazy please help!

Upvotes: 0

Views: 67

Answers (1)

James Webster
James Webster

Reputation: 32066

It seems you've over written the template used to create the basis for a new app. Try re-installing the templates if you can find them. If not, you may have to reinstall XCode.

The templates may be in one of these locations:

“/Library/Application Support/Developer/Shared/Xcode/Project Templates” and “/Library/Application Support/Developer/Shared/Xcode/File Templates”. Source

Upvotes: 1

Related Questions