[iOS] Remove memory warning catching in MapsAppDelegate. We catch it in MapVC.

This commit is contained in:
vng 2012-10-18 19:38:33 +03:00 committed by Alex Zolotarev
parent a22b951b8d
commit 8a0210cc2c

View file

@ -133,10 +133,11 @@
[UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
}
- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application
{
NSLog(@"applicationDidReceiveMemoryWarning");
}
// We process memory warnings in MapsViewController
//- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application
//{
// NSLog(@"applicationDidReceiveMemoryWarning");
//}
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{