我正在开发一个应用程序,我想更改导航栏标题的字体颜色和表格单元格的文本标签。
我正在使用以下代码片段来更改颜色
[mantraLabel setTextColor:[UIColor colorWithRed:89 green:45 blue:15 alpha:1]];
并配置表格单元格如下,
NSString *cellValue = [mantra objectAtIndex:indexPath.row];
mantraLabel.backgroundColor=[UIColor clearColor];
mantraLabel=[[UILabel alloc]initWithFrame:CGRectMake(60,4,200,44)];
mantraLabel.text=cellValue;
[mantraLabel setBaselineAdjustment:UIBaselineAdjustmentAlignCenters];
[mantraLabel setFont:[UIFont fontWithName:@"Marathi-Vakra" size:21.0]];
[cell addSubview:mantraLabel];
[mantraLabel setTextColor:[UIColor colorWithRed:89 green:45 blue:15 alpha:1]];
但我面临的问题是上述声明没有颜色变化,而且我的一个单元格背景也出现在白色。