indexPath.row == 0
2016-11-16 本文已影响0人
tesla1984
tableView数据出来了,但是都是一样的,调试之后发现indexPath.row一直都是0,后来发现这两个方法写反了
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 1;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return [self.data count];
}