您现在的位置是:主页 > news > 打开无忧管理后台网站/加盟培训机构

打开无忧管理后台网站/加盟培训机构

admin2025/5/6 10:04:41news

简介打开无忧管理后台网站,加盟培训机构,徐州招标网,网站如何做二级域名系统提示按钮字体颜色默认是蓝色,因为是在项目优化时产生的需求故使用拓展的方式解决。 #import "UIAlertControllerGSActionBtn.h"implementation UIAlertController (GSActionBtn) (void)load {// 只执行一次static dispatch_once_t onceToken;dispatc…

打开无忧管理后台网站,加盟培训机构,徐州招标网,网站如何做二级域名系统提示按钮字体颜色默认是蓝色,因为是在项目优化时产生的需求故使用拓展的方式解决。 #import "UIAlertControllerGSActionBtn.h"implementation UIAlertController (GSActionBtn) (void)load {// 只执行一次static dispatch_once_t onceToken;dispatc…

 系统提示按钮字体颜色默认是蓝色,因为是在项目优化时产生的需求故使用拓展的方式解决。

#import "UIAlertController+GSActionBtn.h"@implementation UIAlertController (GSActionBtn)+ (void)load {// 只执行一次static dispatch_once_t onceToken;dispatch_once(&onceToken, ^{[NSObject exchangeInstanceMethodWithSelfClass:UIAlertController.class originalSelector:@selector(addAction:) swizzledSelector:@selector(GSActionBtn_AddAction:)];});
}- (void)GSActionBtn_AddAction:(UIAlertAction *)action {if ([action.title isEqualToString:@"取消"] && self.preferredStyle == UIAlertControllerStyleAlert) {UIColor *tempColor = [UIColor colorWithRed:51/255.0 green:51/255.0 blue:51/255.0 alpha:1];[action setValue:tempColor forKey:@"_titleTextColor"];}[self GSActionBtn_AddAction:action];
}@end

示意图