gpt4 book ai didi

UITableView 数组返回 nil

转载 作者:行者123 更新时间:2023-11-29 04:39:05 26 4
gpt4 key购买 nike

现在我有一个表格 View ,我可以向你保证委托(delegate)方法一切正常。但我正在尝试从数组加载表格 View 。当我在应用程序中较早登录时,相同的数组返回实际对象,但是当我尝试访问 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 中的相同数组时,相同的数组返回实际对象>它总是返回 nil/null。这是 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath:

的实现
NSLog(@"cell for row at twitter called");
static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
}

NSDictionary *tweet = [timeLineData objectAtIndex:indexPath.row];
// NSLog(@"Tweet at index %d is %@", [indexPath row], tweet);
//NSLog(@"Tweet: %@", tweet);
cell.textLabel.text = [tweet objectForKey:@"text"];

cell.detailTextLabel.text = [tweet valueForKeyPath:@"user.name"];


return cell;

我很困惑为什么会这样,因为在我的所有其他项目中,相同的代码运行得很好。任何帮助将不胜感激。

谢谢,维林德·博拉

最佳答案

如果您使用以下方式访问数组会有帮助吗:

[yourArray objectAtIndex:indexpath.row];

关于UITableView 数组返回 nil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10659910/

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