Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
Michael James edited this page Dec 10, 2018 · 1 revision

IOS Development

  • Xcode
  • Swift
  • Swift Package Manager

Steps

  1. Install Cocoapods
sudo gem install cocoapods
pod setup --verbose
  1. Create a new Xcode project via the UI

  2. Using terminal navigate to the new project folder

  3. Create a pod file

pod init
  1. Go back to Xcode. Right click your project target, choose "Add files to...". Then select your Podfile to add it to the project.

  2. Add your dependencies. (You can search for them on cocoapods.org).

  3. Return to terminal, run:

pod install
Clone this wiki locally