3

我正在尝试使用动态数据创建一个表,但我有点卡住了。这是我的数据的结构方式:

NSMutableArray *bigArray;

bigArray有很多NSDictionary项目。

每个items只有一个条目。

sectionName是键,NSMutableArray 是值。

valueNSMutableArray中有很多对象。

我试图尽可能简单地解释这一点,这是我被卡住的部分。

//easy
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return [bigArray count];
}

//medium
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{    
    // Return the number of rows in the section.
    return [[[[bigArray objectAtIndex:section] allValues] objectAtIndex:0] count];
}

根据我当前的数据结构,我无法弄清楚这部分如何实现此方法:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   UITableViewCell *cell = [tableView 
                             dequeueReusableCellWithIdentifier:@"MyCell"];

    MyObject *obj = //Need this part


    cell.textLabel.text = obj.name;   

    return cell;

}

简而言之,我正在尝试使用动态数据插入动态部分。我正在寻求更有经验的开发人员的建议,你会如何解决这个问题?

4

1 回答 1

0

假设我很了解您的数据的结构,我会这样做:

(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MyCell"];
    }

    //this will get you the dictionary for the section being filled
    NSDictionary *item = [bigArray objectAtIndex:indexPath.section];
    // then the array of object for the section
    NSMutableArray *mutableArray = [item objectForKey:@"sectionName"];
    //you then take the object for the row
    MyObject *obj = [mutableArray objectAtIndex:indexPath.row];

    cell.textLabel.text = obj.name;   

    return cell;
}

不要忘记在属性检查器中为单元原型设置重用标识符

于 2012-04-21T21:17:48.987 回答