码迷,mamicode.com
首页 > 其他好文 > 详细

UITableViewCell点击不能push解决方法

时间:2017-05-15 10:45:46      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:导航   nav   des   情况   xpath   index   owa   row   elf   

一般情况下不能push是因为当前控制器没有导航控制器,造成不能push的情况.

解决方法如下:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    NSLog(@"点击left-%d",(int)indexPath.row);
    NSLog(@"%@",self.navigationController);
    TempViewController *tempVc = [[TempViewController alloc]init];
    UINavigationController *navVC = [UIApplication sharedApplication].keyWindow.rootViewController.childViewControllers[0].navigationController;
    [navVC pushViewController:tempVc animated:YES];
}

还有什么好的解决方式,请大神告知哟..嘻嘻~~~

UITableViewCell点击不能push解决方法

标签:导航   nav   des   情况   xpath   index   owa   row   elf   

原文地址:http://www.cnblogs.com/pengsi/p/6855309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!