UIKitCategoryAdditions icon indicating copy to clipboard operation
UIKitCategoryAdditions copied to clipboard

added #if directives to UIAlertView additions to support ARC

Open justinamberson opened this issue 13 years ago • 1 comments

Dropped in to an ARC project and got 6 errors, so I added these types of statements

if __has_feature(objc_arc)

return alert;

else

return [alert autorelease];

endif

justinamberson avatar Feb 29 '12 03:02 justinamberson

This no longer applies cleanly. It also doesn't fix all the ARC issues in the project.

drewish avatar Aug 13 '12 19:08 drewish