gpt4 book ai didi

iphone - 将 UITableView 与 NSMutableArray 链接

转载 作者:行者123 更新时间:2023-11-29 04:49:15 25 4
gpt4 key购买 nike

我一直在尝试用 NSMutableArray 中的数据填充 UITableView。我有一个基于 View 的应用程序项目,到目前为止,我已经尝试了找到的所有教程,但到目前为止,它不起作用。我将数据源和委托(delegate)链接到文件的所有者,我将协议(protocol) UITableViewDelegate 和 UITableViewDataSource 添加到我的 UIViewController,我创建一个包含 3 个字符串的数组只是为了尝试和调试,每次加载应用程序时,表都保持为空。

我不确定我的错误可能是什么,或者我应该在哪里寻找问题,如果你们有任何想法那就太好了。

谢谢

最佳答案

-(NSInteger) tableView:(UITableView *)table numberOfRowsInSection: (NSInteger)section
{
return [yourArray count];
}

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

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}


NSUInteger row = [indexPath row];

cell.textLabel.text = [yourArray objectAtIndex:row];

return cell;
}

这应该从数组中填充表。我在我的应用程序中使用过它多次。

关于iphone - 将 UITableView 与 NSMutableArray 链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9135647/

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