I get asked this question a lot, when should you use Auto Layout? If it was a job interview at Google, the answer is no Auto Layout :). If it's a job interview at startups, Auto Layout is the way to go. So when should we use Auto Layout and when should we use Manual … Continue reading Auto Layout or Manual Layout?
Category: iOS
Retained Cycles, Yikes
How does memory management work in iOS? ARC is a compile time feature that Apple uses to automate memory management, well it takes care of most of the BASICS. ARC is short for Automatic Reference Count. The idea of ARC is simple. That means it will only frees up memory for objects when there are … Continue reading Retained Cycles, Yikes