UIActionSheet(或UIAlertView)的tintColor(iOS 7)

UIActionSheet(或UIAlertView)的tintColor(iOS 7),第1张

概述是否可以在iOS 7的tintColor颜色的UIActionSheet中使用按钮?我的意思是如果我的应用程序是品牌tintColor,例如红色,我不想在行动表中使用蓝色按钮.与UIAlertView相同. 我想强调这违反了Apple的规则,但这有效: - (void)willPresentActionSheet:(UIActionSheet *)actionSheet{ [action 是否可以在iOS 7的tintcolor颜色的UIActionSheet中使用按钮?我的意思是如果我的应用程序是品牌tintcolor,例如红色,我不想在行动表中使用蓝色按钮.与UIAlertVIEw相同.解决方法 我想强调这违反了Apple的规则,但这有效:
- (voID)willPresentActionSheet:(UIActionSheet *)actionSheet{    [actionSheet.subvIEws enumerateObjectsUsingBlock:^(UIVIEw *subvIEw,NSUInteger IDx,BOol *stop) {        if ([subvIEw isKindOfClass:[UIbutton class]]) {            UIbutton *button = (UIbutton *)subvIEw;            button.TitleLabel.textcolor = [UIcolor greencolor];            Nsstring *buttonText = button.TitleLabel.text;            if ([buttonText isEqualToString:NSLocalizedString(@"Cancel",nil)]) {               [button setTitlecolor:[UIcolor greencolor] forState:UIControlStatenormal];            }        }    }];}

(符合UIActionSheetDelegate)

尚未尝试过UIAlertVIEw.

总结

以上是内存溢出为你收集整理的UIActionSheet(或UIAlertView)的tintColor(iOS 7)全部内容,希望文章能够帮你解决UIActionSheet(或UIAlertView)的tintColor(iOS 7)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1109536.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存