Automatic Reference Counting (ARC) is a compiler feature that provides automatic memory management of Objective-C and Swift objects.
I am using ARC successfully in my project. However, I have encountered a few files (e.g., in unit tests …
objective-c xcode automatic-ref-counting manual-retain-releaseThere are two new memory management attributes for properties introduced by ARC, strong and weak. Apart from copy, which is …
ios objective-c ios5 properties automatic-ref-countingI'm getting the following warning by the ARC compiler: "performSelector may cause a leak because its selector is unknown". Here's …
ios objective-c memory-leaks automatic-ref-countingI'm trying to send an HTTP Post with the iOS application that I'm developing but the push never reaches the …
ios objective-c automatic-ref-counting http-post nsurlconnectionCan someone explain to me in detail when I must use each attribute: nonatomic, copy, strong, weak, and so on, …
objective-c automatic-ref-counting declared-propertyIn WWDC 2014 session 403 Intermediate Swift and transcript, there was the following slide The speaker said in that case, if we …
swift automatic-ref-countingI am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) be strong or weak? The following: @…
ios objective-c cocoa-touch interface-builder automatic-ref-countingIs it possible to have blocks as properties using the standard property syntax? Are there any changes for ARC?
ios objective-c automatic-ref-counting objective-c-blocksI am a little confused about block usage in Objective-C. I currently use ARC and I have quite a lot …
ios iphone objective-c automatic-ref-counting weak-referencesHow do I convert (or create) a singleton class that compiles and behaves correctly when using automatic reference counting (ARC) …
objective-c ios singleton automatic-ref-counting