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

UITableView默认选中第一行

//如果有数据,选中第一行if(tableDataSource.count > 0)    {        NSIndexPath *indextPath = [NSIndexPath indexPathForRow:0 inSection:0];        // 调用UItableViewDelegate        [self tableView:self.selectDeptTable didSelectRowAtIndexPath:indextPath];        // 选中第一行        [self.tableView selectRowAtIndexPath:indextPath animated:YES scrollPosition:UITableViewScrollPositionNone];    }

  

UITableView默认选中第一行