by Dj Sison | Oct 29, 2016 | iOS Development, Objective-C, Swift
https://autolayoutconstraints.com/ Recently, a co-worker of mine suggested this great tool for generating auto layout constraints code for both Swift and Objective-C. The tool works like the Interface Builder for storyboards, so you can just utilize the tool...
by Dj Sison | May 9, 2016 | iOS Development, Sample Code, Swift
Singleton Singletons are useful when you want data in memory to persist throughout the lifetime of the application. Usually, it is better to pass around the relevant data to each of your controller for easier unit testing and debugging. But sometimes, you just need a...