gpt4 book ai didi

ios - 将 495 单元格导入 TableView

转载 作者:行者123 更新时间:2023-11-28 18:27:21 24 4
gpt4 key购买 nike

我想创建一个包含 495 个单元格的 TableView 。
我想用 NSArray 导入单元格,这样对吗?
如果是,如何用简单的代码创建495个单元格?

不是这样的:

@"Cell 1" @ "cell 2" @"cell 3", @"cell 4", @"cell 5" ............. @"cell 495" 

最佳答案

您必须在“-tableView:numberOfRowsInSection:”方法中返回值 495,例如

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSLog(@"Returning num rows");
return 495;
}

然后用你的数组填充表格

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
NSUInteger row = [indexPath row];
cell.text = [array objectAtIndex:row];
return cell;
}

这里我假设您在单元格中存储文本数据。还要在 viewDidLoad 方法中创建数组。

关于ios - 将 495 单元格导入 TableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1982634/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com