0

Xcode テンプレート コード: MasterViewController.m の MasterDetailApplication (コア データを使用)、の実装

- (NSFetchedResultsController *)fetchedResultsController
{
  if (__fetchedResultsController != nil) {
    return __fetchedResultsController;
}

NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] init];
// Edit the entity name as appropriate.
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Event" inManagedObjectContext:self.managedObjectContext];
[fetchRequest setEntity:entity];

// Set the batch size to a suitable number.
[fetchRequest setFetchBatchSize:20];

// Edit the sort key as appropriate.
NSSortDescriptor *sortDescriptor = [[NSSortDescriptor alloc] initWithKey:@"timeStamp" ascending:NO];
NSArray *sortDescriptors = [NSArray arrayWithObjects:sortDescriptor, nil];

[fetchRequest setSortDescriptors:sortDescriptors];

// Edit the section name key path and cache name if appropriate.
// nil for section name key path means "no sections".
NSFetchedResultsController *aFetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:self.managedObjectContext sectionNameKeyPath:nil cacheName:@"Master"];
aFetchedResultsController.delegate = self;
self.fetchedResultsController  = aFetchedResultsController;
NSError *error = nil;
if (![self.fetchedResultsController performFetch:&error]) {
     // Replace this implementation with code to handle the error appropriately.
     // abort() causes the application to generate a crash log and terminate. You should not use this function in a shipping application, although it may be useful during development. 
    NSLog(@"Unresolved error %@, %@", error, [error userInfo]);
    abort();
}

return __fetchedResultsController;
}    

問題は: このコードは getter 内でプロパティを使用していますが、なぜこれが無限ループを引き起こさないのでしょうか? 私はこの行を意味します:

self.fetchedResultsController  = aFetchedResultsController;
4

2 に答える 2

3

コードは getter 内でプロパティを使用しますが、 setterself.prop = valueを呼び出す構文を使用します(getter 内の getter ではありません)。したがって、このコードが無限ループを生成する理由はありません。

とにかく、これはゲッターの非常に奇妙な実装です。

通常、setter が自分自身を getter と呼ばない場合は、getter メソッド内で setter メソッドを呼び出すことに問題はありません。もちろん、セッター自体がゲッターを呼び出す場合、無限ループ、ゲッター呼び出しセッター呼び出しゲッターなどがあります。

于 2012-07-11T09:23:02.470 に答える
2

ゲッターではなくセッターを使用しているためです。

 self.property = something;

これにより、セッターが呼び出されます。

 [self setProperty:something];

ゲッターではありません:

 [self property];
于 2012-07-11T09:22:51.937 に答える