Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 1.43 KB

File metadata and controls

44 lines (39 loc) · 1.43 KB

Default-Xcode-Project

A pre-configured Xcode project template ready for iOS development. Designed to save time and provide a solid starting point for new projects. Feel free to create issues and proposals. Enjoy!

Features:

  • Loading ViewControllers manually (without Storyboard)
  • Images and Colors generation using SwiftGen (installed with SPM)
  • Basic SwiftLint rules (installed with SPM)
  • Basic gitignore file

How to use:

  1. Download project
  2. Rename the project
  • Click on the project you want to rename in the "Project navigator" in the left panel of the Xcode window.
  • In the right panel, select the "File inspector", and the name of your project should be found under "Identity and Type". Change it to your new name.
  • When the dialog asks whether to rename or not rename the project's content items, click "Rename". Say yes to any warning about uncommitted changes.
  1. Go to swiftlint.yml and rename this
excluded:
  - DefaultProject/Generated

to this:

excluded:
  - YourNewName/Generated
  1. Go to swiftgen.yml and rename this
input_dir: DefaultProject
output_dir: DefaultProject/Generated

to this:

input_dir: YourNewName
output_dir: YourNewName/Generated

TO DO

  • Script generation of project template