我正在尝试使用实体上的获取请求发送多个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吗?我无法弄明白该怎么做。
谢谢,
麦克
答案 0 :(得分:0)
1)executeFetchRequest返回一个自动释放的NSArray,你不需要手动释放它
2)不清楚你想要优化什么......