Bryan Hanson
Bryan Hanson

Reputation: 6213

xcode 6.01+ swift: What is the minimal project structure I must have / How to remove unneeded file references?

I'm trying to create a very lean iOS project structure with no unneeded files. If one does new --> project and and selects single view project, you get a basic project file structure which includes main.storyboard, LaunchScreen.xib and a folder projectTests. If my code doesn't require the interface builder files and I don't want unit tests, besides removing the files, what other settings do I need to remove or change to clean things up?

Upvotes: 1

Views: 408

Answers (1)

southp
southp

Reputation: 504

From your described context, my best guess is you want a clean project to experiment on swift. I suggest you choose OSX -> Application -> Command Line Tool template. You'll have a clean project with only one main.swift.

Upvotes: 1

Related Questions