tableView数据出来了,但是都是一样的,调试之后发现indexPath.row一直都是0,后来发现这两个方法写反了
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return 1;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
return [self.data count];
}
网友评论