1

エンティティでフェッチ要求を使用して複数の 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 を使用してコードを最適化できますか? 私はそれを行う方法を理解できません。

ありがとう、

マイク

4

1 に答える 1

0

1) executeFetchRequest は、自動解放された NSArray を返します。手動で解放する必要はありません。

2) 何を最適化したいのかはっきりしない...

于 2011-01-12T22:24:01.703 に答える