문제

It is showing as low memory on this line/code

appDelegate.window.rootViewController = preVC;

My code: -

PreViewController *preVC = [[PreViewController alloc] initWithNibName:@"PreViewController" bundle:nil];
preVC.managedObjectContext = managedObjectContext;
[self.view removeFromSuperview]; // Memory leak .6%
appDelegate.window.rootViewController = preVC; // Memory leak 46.4%
[preVC release];

please help, correct or suggest me to release the memory or alternative solution for the problem, where I have done wrong. Thanks in Advance.

도움이 되었습니까?

해결책

IN app delegate i didFinishLaunching u have to set your RootViewController at run time on thrugh mainWindow.Xib

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top