我有一个基于 UITabBarController 模板的应用程序,其中第一个选项卡是 UITableViewController,单元格中有自定义按钮。我需要一个单元格中的一个按钮来调用父 UITabBarController 中的特定选项卡。我在 didSelectRowAtIndexPath 中使用此代码:
case 5:
NSLog(@"Search");
[tableView deselectRowAtIndexPath:indexPath animated:YES];
// Get UITabBar instance and send it message
UITabBarController *tabBar = (UITabBarController*)[self parentViewController];
[tabBar setSelectedIndex:1];
break;
当我点击这一行时,应用程序在控制台中没有任何日志的情况下崩溃。我在 UITableViewController 中调用它,这是 UITabBarController 中的第一个选项卡。
PS 我还想避免用户点击时在此单元格上出现蓝色选择。所以我添加了这段代码:
- (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath{
switch (indexPath.row) {
case 1:
return nil;
break;
}
}
但是当我点击它时它仍然选择蓝色。它们可能是相关的问题吗?