前言:
前段时间,项目中要使用一个按钮背景为黄色的弹框样式,然后title字体和message字体的大小和颜色也需要调整。由于系统UIAlertController的样式修改局限:调整title和message字体的大小和颜色倒是可以根据私有属性进行修改(不推荐,因为这些属性是不同的iOS版本添加的,所以虽然能修改,但是也比较费劲,不安全。)然而比如弹框分割线的颜色,确定,取消按钮的字体颜色,背景色等等却是修改不了。。。所以,考虑自定义,类比系统样式的大小布局,API格式,写了一个YXAlertController。废话不多说先看下示例对比:
接下来说说YXAlertController组成部分及实现:
注:由于考虑到可移植性和不依赖第三方自动布局库,YXAlertController里面所有的布局采用设置frame实现,并创建了一个UIView的分类,便于取坐标,宽高等。
一、组成部分
YXAlertController由YXAlertController,YXAlertAction,YXAlertView,YXActionSheetView,YXTableViewCell,YXAlertLayout六个文件组成。YXAlertView和YXActionViewSheet可以合并为一个文件实现,这里分开了,YXAertLayout是设置颜色,字体的一个model.
二、API格式参照系统API简单写了一下,下面是 YXAlertController.h文件代码:
typedef NS_ENUM(NSInteger, YXAlertControllerStyle) {
YXAlertControllerStyleAlert = 0,
YXAlertControllerStyleActionSheet
};
@interface YXAlertController : UIViewController
//alertController的color&fontSet
@property (nonatomic, strong, nonnull) YXAlertLayout *layout;
@property (nonatomic, assign) YXAlertControllerStyle style;
+ (instancetype _Nullable )alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message style:(YXAlertControllerStyle)style;
//修改色值和字体之后 使用此方法
- (void)layoutSettings;
- (void)addAction:(YXAlertAction *_Nonnull)action;
- (void)presentFromViewController:(UIViewController *_Nullable)fromViewController animated:(BOOL)flag completion:(void (^_Nullable)(void))completion;
- (void)dismissWithAnimation:(BOOL)flag completion:(void (^_Nullable)(void))completion;
三、实现原理
很简单,其实就是自定制一个弹框,根据用户设置的title和message和actions等,进行创建alertView并布局,主要是布局的坐标,宽高及label间的间距,字体的大小样式,分割线的颜色,遮罩的色值等等参照系统的数据进行设置。当actions多余两个时,采用列表布局,这点跟系统也是一样的,然后添加到alertController的view上,添加遮罩,需要注意的是,需要自己定义presentViewController和dismiss两个方法,对actionStyle为cancel的按钮个数进行控制,多余一个时,主动抛出异常,并且cancelStyle的action需排列到最下面。
四、使用方法。
一、集成方式:
1.可以下载下来把YXCustomAlert文件夹拖进项目中
2.可以用cocoaPods
pod 'LYXAlertController'
二、使用
1.导入头文件 #import "YXAlertController.h"
2.创建alertController跟UIAlertController的创建方式一样,支持alert和actionSheet,下面拿alert举例:
YXAlertController *alertController = [YXAlertController alertControllerWithTitle:@"爱尔兰雪、土耳其蓝、莫斯科眼泪。我都收藏在小小的太阳里、还有晴天和微笑。波斯湾海、维也纳厅、阿拉伯传说。我都纪念在厚厚的相集里。还有七粉和公主" message:@"蔷薇开出的花朵没有芬芳、想念一个人、怀念一段伤、不流泪、不说话" style:YXAlertControllerStyleAlert];
YXAlertAction *cancel = [YXAlertAction actionWithTitle:@"考虑一下" style:1 handler:^(YXAlertAction * _Nonnull action) {
NSLog(@"custom:点击了取消");
}];
YXAlertAction *done = [YXAlertAction actionWithTitle:@"赞一个" style:2 handler:^(YXAlertAction * _Nonnull action) {
NSLog(@"custom:点击了确定");
}];
3.YXAlertCotroller 有一个layout属性,修改可以进行UI设置,已达到预期的样式。
@property (nonatomic, strong, nonnull) YXAlertLayout *layout;
//自定义颜色设置
alertController.layout.doneActionTitleColor = [UIColor redColor];
alertController.layout.cancelActionBackgroundColor = [UIColor whiteColor];
alertController.layout.doneActionBackgroundColor = [UIColor yellowColor];
alertController.layout.lineColor = [UIColor redColor];
alertController.layout.topViewBackgroundColor = [UIColor orangeColor];
alertController.layout.titleColor = [UIColor whiteColor];
//设置之后要调用下此方法。
[alertController layoutSettings];
4.添加action
[alertController addAction:cancel];
[alertController addAction:done];
5.present 这里使用自定义的方法
[alertController presentFromViewController:self animated:YES completion:nil];
最后说下不足之处:
1.弹出和消失动画,这里只是简单的实现了一下,跟系统的动画效果相比还是有点差距。以后可以多实现几种动画效果
2.actionSheet的样式,没有把cancel的action与上面隔开,这里只是简单的放到了最下面。
3.alertView的样式还可以扩展,可以展示自定义的View,比如输入框,选择日期等等。