在uiview 的tableView中点击cell进入跳转到另一个界面的实现方法

时间:2021-09-20 14:40:36

1.先重写uiviewcontrol的方法

?
cellpadding="0" cellspacing="0">
1
2
3
4
5
6
7
8
9
- (UIViewController *)viewController {
  for (UIView* next = [self superview]; next; next = next.superview) {
    UIResponder *nextResponder = [next nextResponder];
    if ([nextResponder isKindOfClass:[UIViewController class]]) {
      return (UIViewController *)nextResponder;
    }
  }
  return nil;
}

2.接下来是点击cell的方法

?
1
2
3
4
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
  qunzuDetailViewController *qc=[[qunzuDetailViewController alloc]initWithNibName:@"qunzuDetailViewController" bundle:[NSBundle mainBundle]];
  [[self viewController]presentViewController:qc animated:YES completion:nil];
}

以上所述是小编给大家介绍的在uiview 的tableView中点击cell进入跳转到另一个界面的实现方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:http://www.cnblogs.com/Root-zpy/archive/2016/10/07/5935758.html