2015-07-20 199 views

回答

0

在你AppDelegate.m設置window.tintColor到你想要的顏色。 它只改變後退按鈕箭頭和文本的顏色。

AFAIK您無法更改警報UI內容。嘗試使用自定義提醒。有太多的自定義提醒。

1

使用KVC低於code適合我在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"]; 
相關問題