小编Raj*_*Raj的帖子

如何在viewForHeaderInSection中的tableview中动态更改标题标题?

我需要在tableview标题中设置标题名称.我在代码中使用它

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section  function
{
   IView *headerView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)];
    UILabel *lbl_header = [[UILabel alloc]initWithFrame:CGRectMake(12, 0, tableView.bounds.size.width, 30)];
    lbl_header.tag=1000001;
    lbl_header.backgroundColor = [UIColor clearColor];
    lbl_header.textColor = [UIColor colorWithRed:204.0/255 green:204.0/255 blue:204.0/255 alpha:1.0];
    lbl_header.font = [UIFont fontWithName:@"Helvetica-Regular" size:20];

    ////  get the title name from subclass view controller 

    HOAViewController *obj_hoaview_controll = [[HOAViewController alloc]init];
    [obj_hoaview_controll fun_get_login_email_id];


    lbl_header.text = str_email_id1;//[udf_value objectForKey:@"StrEmailGet"];


    if (section == 0)
    {
         [headerView setBackgroundColor:[UIColor colorWithRed:102.0/255 green:102.0/255 blue:102.0/255 alpha:1.0]];
        //lbl_header.text = [udf_value objectForKey:@"StrEmailGet"];
    }
    else …
Run Code Online (Sandbox Code Playgroud)

objective-c uitableview ios

-1
推荐指数
1
解决办法
2003
查看次数

标签 统计

ios ×1

objective-c ×1

uitableview ×1