美文网首页
定位tableview的某一行 并选中

定位tableview的某一行 并选中

作者: 奕珃 | 来源:发表于2017-09-29 10:39 被阅读0次

    //例子:选中section 0中的第5行

    NSIndexPath *indexpath = [NSIndexPath indexPathForRow:5 inSection:0];

    [self.tableView scrollToRowAtIndexPath:indexpath atScrollPosition:UITableViewScrollPositionMiddle animated:YES];  //滚动到第5行

    [self.tableView selectRowAtIndexPath:indexpath animated:YES scrollPosition:UITableViewScrollPositionMiddle];  //选中第5行

    相关文章

      网友评论

          本文标题:定位tableview的某一行 并选中

          本文链接:https://www.haomeiwen.com/subject/tqdvextx.html