Possible Duplicate:
In which situations do we need to write the __autoreleasing ownership qualifier under ARC?
making this method in the interface:
- (NSArray *)questionsFromJSON:(NSString *)jsonString
withError:(NSError **)error;
when tabbing out autocomplete in the implementation it's adding this:
- (NSArray *)questionsFromJSON:(NSString *)jsonString withError:(NSError *__autoreleasing *)error
I figured with ARC there never needs to be the use of autorelease but I'm guessing this is different, as it compiles fine with ARC.
Just curious :)