我有一个问题导致我的应用程序崩溃,我已经尝试了一切来改变它,但没有运气。所以我希望有一双新的眼睛可以帮助我一点点。
这是我的代码的视图:
。H
@property (nonatomic, retain) UILocalNotification *notification;
.m
- (void)applicationDidEnterBackground:(UIApplication *)application
{
UILocalNotification *notification = [[UILocalNotification alloc] init];
notification.fireDate = [[NSDate date] dateByAddingTimeInterval:60*60*24];
notification.alertBody = @"Skal du ikke træne i dag? Det tager kun 7 minutter!";
[[UIApplication sharedApplication] scheduleLocalNotification:notification];
}
分析时它给了我以下错误:
- 存储到“通知”中的对象的潜在泄漏
我真的希望你们中的一个可以帮助我。谢谢!