Automatic Reference Counting (ARC) is a compiler feature that provides automatic memory management of Objective-C and Swift objects.
I just started a new project running Xcode 4.2.1 and iOS5 SDK. The project is setup with ARC. I'm trying to …
objective-c cocoa-touch delegates automatic-ref-counting uiapplicationdelegateI had some memory problems due to Xcode's template for a UIPageViewController caching all the page data, so I changed …
ios automatic-ref-counting uipageviewcontrollerI want to know if my Xcode iPhone project is using ARC, and I can't remember if I ticked that …
iphone xcode automatic-ref-countingI am using a separate .h, .m, and .xib files for each UIViewController based page of a UIPageViewController based picture …
ios xcode memory-management automatic-ref-counting uipageviewcontrollerI'm trying to understand the way ARC works, and as far as I know, I should be doing something wrong …
iphone automatic-ref-counting retain weakI converted my app to ARC and noticed that an object alloc'ed in one of my view controllers was not …
iphone ios automatic-ref-counting nszombieenabledIt is my understanding that setting an ivar now retains the object being assigned to it, since setting variables defaults …
objective-c properties automatic-ref-counting ivarWhile displaying a popover controller for a second time (after dismissing it and then re-displaying it), I get the following …
ios memory-management uipopovercontroller dealloc automatic-ref-countingI have the following code and am getting this error before compiling: Fast Enumeration Variables can't be modified in ARC …
objective-c properties automatic-ref-counting enumerationI have never worked on non ARC based project. I just came across a zombie on my ARC based project. …
objective-c xcode automatic-ref-counting retain-cycle