iOS 11.3更新,文本颜色变暗

时间:2018-03-30 19:15:53

标签: ios objective-c textcolor

有没有人有问题改变文本颜色,因为最初我的应用程序工作正常与明亮的白色作为文本标签颜色,但当我安装最新的iOS更新,我有问题,同时改变颜色,因为那些看起来像最初调暗那些很明亮,可读。

我用于alert-controller的所有pod都具有相同的灰色标题以及按钮标签文本颜色。

任何想法如何解决它,因为我无法找到任何帮助。

1 个答案:

答案 0 :(得分:0)

在目标C中,

UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Dont care what goes here, since we're about to change below" message:@"" preferredStyle:UIAlertControllerStyleAlert];
alertVC.view.tintColor = [UIColor redColor]; // your custom color
NSMutableAttributedString *hogan = [[NSMutableAttributedString alloc] initWithString:@"Presenting the great... Hulk Hogan!"];
[hogan addAttribute:NSFontAttributeName
              value:[UIFont systemFontOfSize:50.0]
              range:NSMakeRange(24, 11)];
[alertVC setValue:hogan forKey:@"attributedTitle"];



UIAlertAction *button = [UIAlertAction actionWithTitle:@"Label text" 
                                        style:UIAlertActionStyleDefault
                                        handler:^(UIAlertAction *action){
                                                    //add code to make something happen once tapped
}];