0
我有一個UITableView
,它使用YapDatabaseView
和YapDatabaseViewMappings
。我想以編程方式有我的表視圖滾動到數據庫中的一個給定對象的位置...YapDatabase是否與NSFetchedResultsController的indexPathForObject等效:?
隨着CoreData我做:
NSIndexPath *indexPath = [self.fetchedResultsController indexPathForObject:myObject];
[self.tableView scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionMiddle animated:YES];
任何等同於YapDatabase
那情景?