IOS tableview 使用
作者:互联网
1 tablecell
2 tableview
3
[self.tableView registerNib:[UINib nibWithNibName:@"ParkCell" bundle:nil] forCellReuseIdentifier:@"cellID"];
self.tableView.delegate = self;
self.tableView.dataSource = self;
[self.tableView reloadData];
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 10;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSInteger index = indexPath.row;
ParkCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellID" forIndexPath:indexPath];
return cell;
}
标签:indexPath,NSInteger,tableview,tableView,self,IOS,cell,ParkCell,使用 来源: https://blog.csdn.net/ltf857/article/details/89281440