2

グループ化された UITableView の足元に UISegmentedControl をプログラムで追加しています。問題なく表示されていますが、オプションをタップしても強調表示されません。ここで何が間違っていますか?また、デフォルトのアイテムを強調表示するように設定するにはどうすればよいですか?

- (void)viewDidLoad
{
    [super viewDidLoad];

    // set up cacheControl
    NSArray* cacheDays = [NSArray arrayWithObjects: @"1", @"2", @"3", @"4", @"5", nil];
    self.cacheControl = [[UISegmentedControl alloc] initWithItems:cacheDays];
    [self.cacheControl setTintColor:[UIColor blackColor]];
    [self.cacheControl addTarget:self action:@selector(cacheSelection:) forControlEvents:UIControlEventValueChanged];
    self.cacheControl.frame = CGRectMake(10, 16, self.tbl.frame.size.width-20, 47);
    [self.cacheControl setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin];

}

- (UIView *)tableView:(UITableView *)tv viewForFooterInSection:(NSInteger)section
{
    switch (section) {
        case 0:{
            UIView* footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tbl.frame.size.width, tbl.contentInset.top)];
            footerView.backgroundColor = [UIColor clearColor];
            return footerView;
        }
        case 1:{
            UIView* footerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tbl.frame.size.width, 16)];
            footerView.backgroundColor = [UIColor clearColor];

            [footerView setClipsToBounds:NO];

            [footerView setAutoresizingMask:UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin];
            [footerView addSubview:self.cacheControl];

            return footerView;
        }
    }
    return nil;
}

要求に応じたスクリーンショット:

設定画面

4

2 に答える 2

0

プロトコル-tableView:heightForFooterInSection:から実装する必要があります。UITableViewDelegate

これにより、テーブル ビューがセクション フッターの高さをビューに合わせて調整し、ユーザー インタラクションを受け取ることができるようになります。

于 2013-04-28T15:15:36.523 に答える