我有点困惑,希望有人能为我澄清。当我创建一个 Universal Master Detail 应用程序时,我注意到 tableview 方法 didSelectRowAtIndexPath 只处理 iPad 选择。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
NSManagedObject *object = [[self fetchedResultsController] objectAtIndexPath:indexPath];
self.detailViewController.detailItem = object;
}
}
有人可以告诉我在哪里处理 iPhone 表格视图选择。
在此先感谢,蒂姆