3

次のコードを使用して、UITableView に UISegmentedControl を追加しています。UISegmentedControl がユーザーの操作にまったく応答しないことを除いて、すべて正常に動作します。何が問題なのですか?

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    if(section == 2) {            
        UIView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0,0, 320, 44)]; // x,y,width,height    

        NSArray *itemArray = [NSArray arrayWithObjects: @"One", @"Two", nil];
        UISegmentedControl *control = [[UISegmentedControl alloc] initWithItems:itemArray];
        [control setFrame:CGRectMake(60.0, 0, 200.0, 40.0)];
        [control setSegmentedControlStyle:UISegmentedControlStylePlain];
        [control setSelectedSegmentIndex:0];
        [control setEnabled:YES];

        [headerView addSubview:control];
        return headerView;

    }
}
4

1 に答える 1

6

次のような対応する heightForHeaderInSection メソッドも必要です。

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    if (section == 2) return 44.f;
    return 0.f;
}

そうでない場合、コントロールは引き続き表示されますが、タッチ可能な領域内には描画されません。

于 2012-07-05T16:49:22.973 に答える