簡體   English   中英

標題部分

[英]Header in section

我正在嘗試復制該部分中的標題,如下圖所示: SectionHeader

我試圖在同一視圖內添加標簽和分隔線。 到目前為止,我的代碼根本無法使用...

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {

    CGRect sepFrame = CGRectMake(0, 50-1, 320, 1);
    UIView *customView = [[UIView alloc] initWithFrame:sepFrame];
    customView.backgroundColor = [UIColor colorWithWhite:224.0/255.0 alpha:1.0];

    UILabel *sectionHeader = [[UILabel alloc] initWithFrame:CGRectNull];
    sectionHeader.backgroundColor = [UIColor whiteColor];
    sectionHeader.textAlignment = NSTextAlignmentCenter;
    sectionHeader.font = [UIFont boldSystemFontOfSize:16];
    sectionHeader.textColor = [UIColor colorWithRed:(66/255.0) green:(139/255.0) blue:(18/255.0) alpha:1] ;
    //sectionHeader.text = [NSString stringWithFormat:@"Section %d", section];

    switch (section) {
        case 0:
            sectionHeader.text =NSLocalizedString(@"ACTIVO", nil) ;
            [customView addSubview:sectionHeader];
            break;
        case 1:
            sectionHeader.text = NSLocalizedString(@"PASSIVO",nil);
            [customView addSubview:sectionHeader];
            break;
    }

    return customView;
}

自從我是IOS的新手以來,任何幫助將不勝感激,在此先感謝您。

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {

    CGRect sepFrame = CGRectMake(0, 50-1, 320, 44); //FIX THIS
    UIView *customView = [[UIView alloc] initWithFrame:sepFrame];
    customView.backgroundColor = [UIColor colorWithWhite:224.0/255.0 alpha:1.0];

    UILabel *sectionHeader = [[UILabel alloc] initWithFrame:sepFrame]; //FIX THIS
    sectionHeader.backgroundColor = [UIColor whiteColor];
    sectionHeader.textAlignment = NSTextAlignmentCenter;
    sectionHeader.font = [UIFont boldSystemFontOfSize:16];
    sectionHeader.textColor = [UIColor colorWithRed:(66/255.0) green:(139/255.0) blue:(18/255.0) alpha:1] ;
    //sectionHeader.text = [NSString stringWithFormat:@"Section %d", section];


    switch (section) {
        case 0:
            sectionHeader.text =NSLocalizedString(@"ACTIVO", nil) ;
            break;
        case 1:
            sectionHeader.text = NSLocalizedString(@"PASSIVO",nil);
            break;                
    }
    [customView addSubview:sectionHeader];

    return customView;
}

您需要為UI元素提供適當的框架。 在上面的代碼中查找“ // FIX THIS”。

嘗試使用這種方法

-(UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
     CGRect sepFrame = CGRectMake(0, 50-1, 320, 50); // change here your view's height
UIView *customView = [[UIView alloc] initWithFrame:sepFrame];
customView.backgroundColor = [UIColor colorWithWhite:224.0/255.0 alpha:1.0];

UILabel *sectionHeader = [[UILabel alloc] initWithFrame:sepFrame]; // also change here in label frame
sectionHeader.backgroundColor = [UIColor whiteColor];
sectionHeader.textAlignment = NSTextAlignmentCenter;
sectionHeader.font = [UIFont boldSystemFontOfSize:16];
sectionHeader.textColor = [UIColor colorWithRed:(66/255.0) green:(139/255.0) blue:(18/255.0) alpha:1] ;
//sectionHeader.text = [NSString stringWithFormat:@"Section %d", section];

switch (section) {
    case 0:
        sectionHeader.text =NSLocalizedString(@"ACTIVO", nil) ;
        [customView addSubview:sectionHeader];
        break;
    case 1:
        sectionHeader.text = NSLocalizedString(@"PASSIVO",nil);
        [customView addSubview:sectionHeader];
        break;
}

return customView;

}

//並編寫此方法

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 50;
}

以下代碼應完成您想要的操作(包括底部的行):

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
    UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    customView.backgroundColor = [UIColor colorWithWhite:224.0/255.0 alpha:1.0];

    UILabel *sectionHeader = [[UILabel alloc] initWithFrame:customView.frame];
    sectionHeader.backgroundColor = [UIColor clearColor];
    sectionHeader.textAlignment = NSTextAlignmentCenter;
    sectionHeader.font = [UIFont boldSystemFontOfSize:16];
    sectionHeader.textColor = [UIColor colorWithRed:(66/255.0) green:(139/255.0) blue:(18/255.0) alpha:1];
    sectionHeader.text = NSLocalizedString(section == 0 ? @"ACTIVO" : @"PASSIVO", nil);
    [customView addSubview:sectionHeader];

    UIView *lineView = [[UIView alloc] initWithFrame:CGRectMake(0, customView.frame.size.height - 1, customView.frame.size.width, 1)];    
    lineView.backgroundColor = [UIColor colorWithRed:(66/255.0) green:(139/255.0) blue:(18/255.0) alpha:1];    
    [customView addSubview:lineView];    

    return customView;
}

查看有關以下內容的文檔:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section

它指出您還必須實現:

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section;

使其正常工作。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM