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];
}
}
Make sure this method is called after showInView. If called before showInView, all buttons except the cancel button will be colored.
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[button setTittleColor...];
[[UIView appearance] setTintColor:[UIColor redColor]];
Note: Because the color of the view is modified, the color of the view must be restored after the alert click disappears. Link description