Skip to content

Instantly share code, notes, and snippets.

@csrutil
Last active August 29, 2015 14:18
Show Gist options
  • Save csrutil/fdedabd2945c4321dd48 to your computer and use it in GitHub Desktop.
Save csrutil/fdedabd2945c4321dd48 to your computer and use it in GitHub Desktop.
IOS project organize
.
├── IPad
├── IPhone
│   ├── Application
│   ├── Controllers
│   ├── Library
│   ├── Models
│   ├── Support
│   └── Views
├── Resources
├── Shared
│   ├── Application # App delegate, relates files
│   ├── Controllers # Base view controllers
│   ├── Library     # Anything that falls outside of the MVC pattern
│   ├── Models      # Modles, any data scheme
│   ├── Support     # Categories and helpers
│   └── Views       # Shared views
└── Vendor

17 directories, 0 files

REF: gist

Code Style: github

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment