ios - UIActionsheet button 颜色
大家讲道理
大家讲道理 2017-04-17 15:32:05
0
3
785

UIActionsheet button 颜色

用这种方式 不好使, 显示actionSheet.subviews 为空
for (id obj in actionSheet.subviews) {

    if ([obj isKindOfClass:[UIButton class]]) {

        UIButton *btn=(UIButton *)obj;

        [btn setTitleColor:[UIColor orangeColor] forState:UIControlStateNormal];

    }
}
大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(3)
巴扎黑
- (void) changeTextColorForUIActionSheet:(UIActionSheet*)actionSheet {
    UIColor *tintColor = [UIColor redColor];

    NSArray *actionSheetButtons = actionSheet.subviews;
    for (int i = 0; [actionSheetButtons count] > i; i++) {
        UIView *view = (UIView*)[actionSheetButtons objectAtIndex:i];
        if([view isKindOfClass:[UIButton class]]){
            UIButton *btn = (UIButton*)view;
            [btn setTitleColor:tintColor forState:UIControlStateNormal];

        }
    }
}

確保這個方法是在 showInView 之後調用的,如果在 showInView 之前調用,除了 cancel button 之外的所有 button 都會被上色。

刘奇

UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[按鈕設定標題顏色...];

刘奇

[[UIView appearance] setTintColor:[UIColor redColor]];

備註:因為是修改view的顏色,所以要在alert點選消失之後還原view的顏色 連結描述

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板