jelofsson / ios-bootstrap

My personal WIKI how to set up a simple ios project. The idea is that I will add info about useful tools.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iOS Bootstrap

My personal WIKI how to set up a simple ios project. The idea is that I will add info about useful tools.

CocoaPods

CocoaPods manages library dependencies for your Xcode projects.

Installation

sudo gem install cocoapods

Useful Pods

AFNetworking MagicalRecord

####Podfile example

# open source
source 'https://github.com/CocoaPods/Specs.git'

pod 'AFNetworking', '~> 2.0'
pod 'MagicalRecord', '~> 1.0'

target 'MyApp' do
	pod 'AFNetworking'
end

Project folder structure

ProjectName  
|-Assets
|---Images
|-Frameworks
|-Logic
|---Models
|-Presentation
|---ViewControllers
|---Views

Command for creating the project folders

mkdir -p ProjectName/{Assets/Images,Frameworks,Logic/Models,Presentation/View{,Controller}s}

synx

synx - A command-line tool that reorganizes your Xcode project folder to match your Xcode groups

About

My personal WIKI how to set up a simple ios project. The idea is that I will add info about useful tools.