1
A
回答
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"];
相關問題
- 1. 更改按鈕標籤的字體顏色和標題
- 2. Android TV,如何更改headeritem的標題和顏色的顏色?
- 3. 更改NSTableView標題字體顏色
- 4. JFreeChart MultiPiePlot更改標題字體顏色
- 5. 更改對話框中標題文本的顏色和字體
- 6. 如何更改DialogFragment標題背景顏色和底線顏色
- 7. 更改操作欄標題字體和顏色
- 8. 更改窗口標題字體樣式和顏色
- 9. 更改NSTableView標題顏色和字體大小及行高
- 10. 更改顏色和NStextView的字體
- 11. matplotlib:更改標題和顏色條文本和刻度顏色
- 12. 如何更改Telerik MVC Chart標題的字體大小和顏色?
- 13. 如何更改TCheckBox,TRadioButton,TGroupBox上的標題字體顏色?
- 14. 更改標題顏色和背景
- 15. 如何更改多色彩字形的顏色(圖標字體)
- 16. 如何更改索引頁上actioncolumn標題和字體顏色yii2
- 17. 如何在創建字體顏色後更改字體顏色
- 18. 更改ActiveCell的字體顏色和背景顏色
- 19. 更改邊框線和字體顏色的顏色
- 20. 如何更改UIActivityViewController中的文本顏色和圖標顏色
- 21. 如何更改GridView的字體顏色?
- 22. 如何更改ListView的字體顏色
- 23. 如何更改textView的字體顏色
- 24. 如何更改字體顏色。 - Python的
- 25. 改變圖形標題的字體和顏色
- 26. 如何更改Plotyy的Seond軸的顏色和字體大小?
- 27. 如何更改jQuery全日曆標題標題的字體顏色?
- 28. 如何更改objectchoicefield標題的顏色
- 29. 如何更改facet_wrap標題的顏色?
- 30. 如何更改光標顏色而不更改文字顏色?