我如何在使用 Cocoa时使用NSMutableArray
of ?任何人都可以建议我提供适当的解决方案吗?NSMutableDictionary's
NSTableView
问问题
701 次
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 回答