首页 > 代码库 > tableview默认选中第一行

tableview默认选中第一行

 // 默认选中第一行只执行一次(否则有BUG)

    if (!isRuned) {

        NSIndexPath *firstPath = [NSIndexPathindexPathForRow:0inSection:0];

        [m_tableViewselectRowAtIndexPath:firstPath animated:YESscrollPosition:UITableViewScrollPositionTop];

        

        isRuned = YES;

    }

tableview默认选中第一行