uitableview scrollRectToVisible(要显示的区域)

来源:互联网 发布:seo技术web678 编辑:程序博客网 时间:2024/05/09 11:04

 //使底部显现

   if (_bIsOpen) {

        [self.tableViewscrollRectToVisible:CGRectMake(0, (indexPath.row+1) *self.tableView.rowHeight, treeNodeCell.frame.size.width,53) animated:YES];

    }


0 0