UITableView的使用

1、頁面加載時選中tableview中的第一行 spa

-(void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
        NSIndexPath *cellPath=[NSIndexPath indexPathForItem:0 inSection:0];
        [self.tableView selectRowAtIndexPath:cellPath animated:NO scrollPosition:UITableViewScrollPositionNone];
        [self tableView:self.tableView didSelectRowAtIndexPath:cellPath];
}
必須在viewWillAppear中寫
相關文章
相關標籤/搜索