ナビゲーション バーのタイトルとテーブル セルのテキスト ラベルのフォントの色を変更したいアプリケーションを開発しています。
次のコードスニップを使用して色を変更しています
[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]];
しかし、私が直面している問題は、上記のステートメントでは色の変化がなく、セルの背景の 1 つが白色で表示されていることです。