- Cocoapods – Great dependency manager for iOS and Mac development
- MagicalRecord – Super easy Core Data
- AFNetworking – Best networking library for iOS out there
- Cocoa Controls – Good site to find open source projects to help speed up your development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This script makes a copy merged based on selection (or entire canvas), | |
| // pastes it into a new doc, then exports it for Android in 320dpi, 240dpi, 160dpi, 120dpi | |
| // | |
| // Written by August 19, 2012 by JP Simard, Magnetic Bear Studios Inc. | |
| exportForAndroid(); | |
| function exportForAndroid() { | |
| // save document state | |
| var initialState = activeDocument.activeHistoryState; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This script makes a copy merged based on selection (or entire canvas), | |
| // creates a new doc based on rounding the merged size to even dimensions, | |
| // pastes it into a new doc, then exports it for both retina and non-retina iOS devices. | |
| // | |
| // Written on August 19, 2012 by JP Simard, Magnetic Bear Studios Inc. | |
| exportForIOS(); | |
| function exportForIOS() { | |
| // save document state |
NewerOlder