iPhone Development:Disable ARC for a single file in a project in iPhone SDK

Automatic reference counting (ARC) was introduced in the iOS 5 sdk to free Objective-C programmers from having to handle memory management by making memory management the job of the compiler. Though you can disable ARC for a certain files in your project.You can use flag -fno-objc-arc for those files. To add this flag to certain […]

iPhone Development:Disable ARC for a single file in a project in iPhone SDK Read More »