0

我目前正在构建一个 iPhone 应用程序,它将显示来自名为“stories”的 NSMutableArray 的数据。数组结构看起来像这样(通过 NSLog):

    2009-07-20 12:38:30.541 testapp[4797:20b] (
    {
    link = "http://www.testing.com";
    message = "testing";
    username = "test";
},
    {
    link = "http://www.testing2.com";
    message = "testing2";
    username = "test2";
} )

我的 cellForRowAtIndexPath 目前看起来像这样:

- (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];


}

    for (NSDictionary *story in stories) {
        [cell setTextColor:[UIColor whiteColor]];
        [cell setFont: [UIFont systemFontOfSize:11]];
        cell.text = [NSString stringWithFormat:[story objectForKey:@"message"]];
    }
            return cell;
}

目前我的 UITableView 显示相同项目的多个条目(恰好是数组中的最后一组)。我怎样才能让它成功地循环遍历数组并一个接一个地在单元格中显示下一项的消息。

提前致谢 :)

本吉

4

4 回答 4

5

您误解了 cellForRowAtIndexPath: 方法的工作原理。

按照您的方式,您正在创建一个单元格,然后反复重置其文本、textColor 和字体属性,然后返回一个单元格。

理解您的问题的关键是理解 cellForRowAtIndexPath: 被多次调用,对于将在屏幕上显示的每个单元格调用一次。因此,不要执行 for() 循环,而是执行以下操作:

NSDictionary * story = [stories objectAtIndex:[indexPath row]];
[cell setTextColor:[UIColor whiteColor]];
[cell setFont: [UIFont systemFontOfSize:11]];
cell.text = [NSString stringWithFormat:[story objectForKey:@"message"]];

传入的 indexPath 参数是 tableView 如何指示它要求您使用的单元格。我们使用它从您的数组中获取相应的故事字典。

编辑:

我还想指出,此代码与 iPhone OS 3.0 不兼容。3.0 SDK 对 UITableViewCell 的工作方式进行了更改,包括其视图层次结构。您可能希望访问单元格的 textLabel,然后设置该单元格的属性如下所示:

NSDictionary * story = [stories objectAtIndex:[indexPath row]];
[[cell textLabel] setTextColor:[UIColor whiteColor]];
[[cell textLabel] setFont: [UIFont systemFontOfSize:11]];
[[cell textLabel] setText:[NSString stringWithFormat:[story objectForKey:@"message"]]];
于 2009-07-21T13:52:22.843 回答
0

这里不需要循环 - 你要做的是使用表格单元格的索引并获取数组的相应元素(不清楚,你使用的是数组还是字典?)。因此,例如,数组的第四个元素将放置在第四个表格单元格中。

这是修复:

 NSDictionary *story = [stories objectAtIndex: indexPath.row];
cell.text=[NSString stringwithFormat:[story objectForKey@"message];
于 2009-07-21T13:47:30.493 回答
0

你的问题是这个

for (NSDictionary *story in stories) {       

[单元格 setTextColor:[UIColor whiteColor]];
[单元格设置字体:[UIFont systemFontOfSize:11]];
cell.text = [NSString stringWithFormat:[story objectForKey:@"message"]];
}

您正在将单元格设置为始终显示最后一个故事,您想要做什么

NSDictionary *story = [stories objectAtIndex: indexPath.row];
cell.text=[NSString stringwithFormat:[story objectForKey@"message];
于 2009-07-21T13:51:46.323 回答
0

代替

for (NSDictionary *story in stories) {
    cell.text = [NSString stringWithFormat:[story objectForKey:@"message"]];
}

你要

int storyIndex = [indexPath indexAtPosition: [indexPath length] - 1];
cell.text = [NSString stringWithFormat:[[stories objectAtIndex: storyIndex] objectForKey:@"message"]];

您的cellForRowAtIndexPath方法将为每个单元格调用一次,因此您只想为该特定单元格设置文本。

请注意,对于没有节的简单表,“索引路径”最终只是一个包含一个整数的数组。

于 2009-07-21T13:52:16.947 回答