[ios] Some macros deleted in UIKitCategories

This commit is contained in:
Igor Khmurets 2013-11-26 20:07:22 +03:00 committed by Alex Zolotarev
parent 8c987c41e4
commit c0d535b284

View file

@ -10,9 +10,6 @@
#define L(str) NSLocalizedString(str, nil)
#define ALERT(str) UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Error" message:str delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alertView show];
#define INFO(str) UIAlertView * alertView = [[UIAlertView alloc] initWithTitle:@"Info" message:str delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alertView show];
@interface NSObject (Optimized)
- (void)performAfterDelay:(NSTimeInterval)delay block:(void (^)(void))block;