我正在尝试使用实体上的获取请求发送多个localNofications
尽管此代码可以正常工作
NSFetchRequest *myRequest = [[NSFetchRequest alloc] init];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"active == YES"];
[myRequest setEntity:[NSEntityDescription entityForName:@"Entry" inManagedObjectContext:managedObjectContext]];
[myRequest setPredicate:predicate];
NSError *error = nil;
NSArray *fetchedObjects = [self.managedObjectContext executeFetchRequest: myRequest error: &error];
if (fetchedObjects == nil){
// Deal with error...
}
// We fill the NSMutableArray with the values of the fetch
self.activeList = [[NSMutableArray alloc] initWithArray:[fetchedObjects valueForKey:@"textbody"]];
[self scheduleAlarms:[self.activeList objectAtIndex:0]];
[fetchedObjects release]; //this line crashes the app
1)如果我释放fetchedObjects,则应用程序崩溃。我不应该释放它吗?
2)我可以使用localNotif.userinfo来优化代码,而不是调用一个方法来调度每个带有ActiveList中字符串的localNotification吗?我不知道该怎么做。
谢谢,
麦克风
最佳答案
1)executeFetchRequest返回一个自动释放的NSArray,您无需手动释放它
2)不清楚您要优化什么...