其他分享
首页 > 其他分享> > IOS tableview 使用

IOS tableview 使用

作者:互联网

1 tablecell
cell 添加identity
2 tableview
设置和cell高度一样
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