Я получаю потенциальную утечку сообщения о выделенном объекте.как я могу снять это?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
extern BOOL _mainWebViewLoaded; // **-> Potential leak of an object allocated
Nimble *nimble = [[Nimble alloc] initWithRootPage:@"main.html" window:self.window serial:@""];
[nimble release];
[self.window makeKeyAndVisible];
while (!_mainWebViewLoaded) {
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];
}
return YES ;
}