在App Delegate中我:
代码清单
@interface weekendviewerAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
UINavigationController *navigationController;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
@implementation weekendviewerAppDelegate
@synthesize window;
@synthesize navigationController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
RootViewController *rootViewController = (RootViewController *)[navigationController topViewController];
rootViewController.managedObjectContext = self.managedObjectContext;
self.window.rootViewController = self.navigationController;
// Configure and show the window
[window addSubview:[navigationController view]];
[window makeKeyAndVisible];
return YES;
}
.
.
答案 0 :(得分:2)
正如Bolt clock所述,你需要在appDelegate类中添加一个dealloc方法。
- (void)dealloc {
[navigationController release];
[window release];
[super dealloc];
}
答案 1 :(得分:0)
如果您在applicationDidReceiveMemoryWarning
中发布了window或navigationController,请注意@greg。不要认为应用程序收到内存警告时应用程序会崩溃。
正如@Bolt和@ishu所说,你只需要在dealloc方法中释放它。
同样在applicationDidReceiveMemoryWarning
方法中,你可以释放那些在一段时间后不会被使用的类变量,因为释放它们可能会导致你的应用程序崩溃。
因此明智地选择哪些变量不重要可能导致应用程序崩溃或阻止您的应用正常工作。