UIActionsheet button 颜色
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];
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
确保这个方法是在 showInView 之后调用的,如果在 showInView 之前调用,除了 cancel button 之外的所有 button 都会被上色。
UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[button setTittleColor...];
[[UIView appearance] setTintColor:[UIColor redColor]];
备注:因为是修改view的颜色,所以要在alert点击消失之后还原view的颜色
链接描述