ARC memory leaks

You’re probably running this code on a background thread, and don’t have an autorelease pool in place. ARC will still autorelease objects for you on occasion, and if you’re calling into Apple frameworks, they may still be non-ARC, so they definitely could be autoreleasing objects for you. So you still need an autorelease pool in … Read more

Weak and strong property setter attributes in Objective-C

Here is what I know about variable properties atomic //default nonatomic strong=retain //default weak retain assign //default unsafe_unretained copy readonly readwrite //default so below is the detailed article link where you can find above mentioned all attributes, that will definitely help you. Many thanks to all the people who have given the best answers here!! … Read more