0

UITableView とセクション/行に問題があります。セクション名、すべての行名、セクションごとの行数を xml から解析しています。

3 つの NSMutableArray があります。

nameArray (すべての行名) sectionArray (すべてのセクション名) secCountArray (セクションごとの行数)

cellForRowAtindexPath が機能するには、表示されているセクションの行を返す必要がありますか? 次のステップは、セクションと各セクションのすべての行を含む 2 次元配列を作成することです。

誰もがより良い解決策を知っていますか?

コードは次のとおりです。

// 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

テーブルビュー全体に対して 1 つの _section 配列と 1 つの _row 配列を持つことができます。

あなたのview controller.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

テーブル ビュー全体に対して 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 に答える