ARC-ified; removed ARCHelper.h

This commit is contained in:
Gianluca Bertani
2015-08-27 16:16:26 +02:00
parent c8f2e3843f
commit 433d629232
16 changed files with 538 additions and 652 deletions
+4 -5
View File
@@ -34,9 +34,8 @@
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
@autoreleasepool {
int retVal = UIApplicationMain(argc, argv, nil, nil);
return retVal;
}
}