0

我如何在使用 Cocoa时使用NSMutableArrayof ?任何人都可以建议我提供适当的解决方案吗?NSMutableDictionary'sNSTableView

4

1 回答 1

0

考虑以下示例:

- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath 
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // I will use tempDict Object for your understandings, otherwise it can be used directly. Here array1 is Main DataSource for UITableView.
    NSDictionary *tempDict = [array1 objectAtIndex:indexPath.row];

    // key1 is the key to get the object from the dictionary.
    cell.title.text = [tempDict valueForKey:key1];

    return cell;
}

在这里,array1 是DataSource您的表视图的主要部分,其中包含NSDictionary对象。

希望这可以帮助。

于 2013-01-22T07:25:39.180 回答