0

我对 UITableView 和部分/行有一些问题。我正在从 xml 中解析每个部分的部分名称、所有行名称和行数。

我有 3 个 NSMutableArrays:

nameArray(包含所有行名称) sectionArray(所有部分名称) secCountArray(每个部分的行数)

为了使 cellForRowAtindexPath 工作,我是否必须返回显示部分的行?我要做的下一步是构建一个二维数组,其中包含部分和每个部分的所有行。

有谁知道更好的解决方案?

代码如下:

// Customize the appearance of table view cells.
- (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] autorelease];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}

// Set up the cell
int xmlEntryIndex = [indexPath indexAtPosition: [indexPath length] -1];

//???
cell.textLabel.text = [[theParser.nameArray objectAtIndex: 1]valueForKey:@"name"];


return cell;
}

谢谢!

4

2 回答 2

2

您可以为整个 tableview 设置一个 _section 数组和一个 _row 数组。

像您的视图控制器.h 文件声明数组

NSMutableArray *arrSection, *arrRow;

然后你的 view controller.m 文件粘贴到下面的代码..

- (void)viewDidLoad
{
    [super viewDidLoad];
arrSection = [[NSMutableArray alloc] initWithObjects:@"section1", @"section2", @"section3", @"section4", nil];
    arrRow = [[NSMutableArray alloc] init];
[arrSection enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
        NSMutableArray *tempSection = [[NSMutableArray alloc] init];
        [arrSection enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
            [tempSection addObject:[NSString stringWithFormat:@"row%d", idx]];
        }];
        [arrRow addObject:tempSection];
    }];
    NSLog(@"arrRow:%@", arrRow);
}

#pragma mark - Table view data source

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

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
    return [arrSection objectAtIndex:section];
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [[arrRow objectAtIndex:section] count];
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell* cell = [tableView dequeueReusableCellWithIdentifier:nil];
    if(!cell)
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:nil];
    cell.textLabel.text = [[arrRow objectAtIndex:[indexPath section]] objectAtIndex:[indexPath row]];
    return cell;
}

此方法不涉及定义和创建您自己的自定义视图。在 iOS 6 及更高版本中,您可以通过定义

- (void)tableView:(UITableView *)tableView 
    willDisplayHeaderView:(UIView *)view 
    forSection:(NSInteger)section

委托方法。

例如:

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
    // Background color
    view.tintColor = [UIColor blackColor];

    // Text Color
    UITableViewHeaderFooterView *header = (UITableViewHeaderFooterView *)view;
    [header.textLabel setTextColor:[UIColor whiteColor]];

    // Another way to set the background color
    // Note: does not preserve gradient effect of original header
    // header.contentView.backgroundColor = [UIColor blackColor];
}

你可以看到显示动态部分和行可能对你有帮助..

于 2014-02-03T08:52:30.440 回答
1

您可以为整个表格视图设置一个数组。该数组包含每个部分的数组。然后cellForRowAtIndexPath可能看起来像:

- (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] autorelease];
        cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }

    [[cell textLabel] setText: [[[myArray objectAtIndex: indexPath.section] objectAtIndex: indexPath.row]];
    return cell;
}

我希望这可以帮助您解决问题。

编辑:使用现代的 Objective-C 和 ARC,我会把它写成

- (void)viewDidLoad {
    ....
    [self.tableView registerClass:[MyCellClass class] forCellReuseIdentifier:kMyCellIdentifier];
} 
...
- (UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {    

    MyCellClass *cell = [tableView dequeueReusableCellWithIdentifier:kMyCellIdentifier forIndexPath:indexPath];

    cell.textLabel.text = myArray[indexPath.section][indexPath.row];

    return cell;
}
于 2012-04-16T19:21:09.133 回答