I am trying convert a project which uses retain and release to use ARC. The automatic conversion in XCode didn’t work out, so I do it by hand. Dealing with release was easy. I am now down to a couple of retain statements like below:
UIImage *origImage = [[info objectForKey:UIImagePickerControllerOriginalImage] retain];
How do I convert this to ARC friendly? I tried to use the strong keyword, but complier complained about Use of undeclared identifier ‘strong’.
it is ARC friendly.