UIActionsheet button 颜色
用这种方式 不好使, 显示actionSheet.subviews 为空
for (id obj in actionSheet.subviews) {
1 2 3 4 5 6 7 8 9 |
|
巴扎黑2017-04-17 15:34:05
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
確保這個方法是在 showInView 之後調用的,如果在 showInView 之前調用,除了 cancel button 之外的所有 button 都會被上色。
怪我咯2017-04-17 15:34:05
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[按鈕設定標題顏色...];
怪我咯2017-04-17 15:34:05
[[UIView appearance] setTintColor:[UIColor redColor]];
備註:因為是修改view的顏色,所以要在alert點選消失之後還原view的顏色 連結描述