gpt4 book ai didi

ios - colorWithRed没有响应

转载 作者:行者123 更新时间:2023-12-01 19:07:16 25 4
gpt4 key购买 nike

我正在开发一个应用程序,我想在其中更改导航栏标题的字体颜色和“表格”单元格的文本标签。

我正在使用以下代码片段来更改颜色

[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]];

但是我面临的问题是上述声明没有颜色变化,而且我的单元格背景之一也显示为白色。

最佳答案

更换

[cell addSubview:mantraLabel];
[mantraLabel setTextColor:[UIColor colorWithRed:89 green:45 blue:15 alpha:1]];


[mantraLabel setTextColor:[UIColor colorWithRed:89/255.0f green:45/255.0f blue:15/255.0f alpha:1]];
[cell addSubview:mantraLabel];

设置颜色后添加标签

关于ios - colorWithRed没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18891825/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com