Reputation: 6213
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
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