如何更改title和alertController的字体和颜色?

时间:2015-07-20 12:09:59

标签: ios swift

我想知道是否有某些方法可以更改标题的字体和颜色 enter image description here(标题本身和后退按钮)和alertController enter image description here

在swift?

2 个答案:

答案 0 :(得分:1)

使用code以下的KVC为我ios8工作。

   UIAlertController *alertVC = [UIAlertController alertControllerWithTitle:@"Title label" message:@"" preferredStyle:UIAlertControllerStyleActionSheet];
    NSMutableAttributedString *hogan = [[NSMutableAttributedString alloc] initWithString:@"Testing text"];
    [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
                                                   }];
    UIImage *accessoryImage = [UIImage imageNamed:@"someImage"];
    [button setValue:accessoryImage forKey:@"image"];

答案 1 :(得分:0)

SELECT outE('CONTACT_OF') FROM #34:1 AppDelegate.m设置为您想要的颜色。 它只会改变后退按钮箭头和文字的颜色。

AFAIK您无法更改警报UI内容。尝试使用自定义提醒。自定义提醒太多了。