In updating some of my code to be in compatible with the iOS 5 SDK, I attempted to refactor my code by using "Convert to Objective-C ARC" in Xcode and received an error. The error occurs on an instance variable in my .h file.
NSError **_error;
The error says "Pointer to non-const type 'NSError *' with no explicit ownership." How might I fix this?
NSErrorinstance when calling a method that takes(NSError**):erroras an argument? – Raffian Sep 23 '12 at 18:01NSError *error = nil;and then you'll just pass&errorinto your method. – Brad Larson♦ Sep 24 '12 at 14:54