本框架结合了系统、微信、微博的提醒对话框各自的优点

网友投稿 602 2022-10-28

本框架结合了系统、微信、微博的提醒对话框各自的优点

本框架结合了系统、微信、微博的提醒对话框各自的优点

重大更新:4.0.0版本适配深色模式

SPAlertController

目录

CocoaPods 使用示例API及属性详解自定义View深色模式预览历史版本

功能特点

采用VFL布局,3.0版本开始,核心控件为UIStackView,风格与微信几乎零误差 3.0版本开始,对话框头部新增图片设置 3.0版本开始,action支持图片设置 3.0版本开始,iOS11及其以上系统可单独设置指定action后的间距 3.0版本开始,支持富文本 action的排列可灵活设置垂直排列和水平排列 每个action的高度自适应 支持旋转(横竖屏) 可以自定义各种UIView 支持对话框毛玻璃和背景蒙层毛玻璃 全面适配iPhoneX,iPhoneXR,iPhoneXS,iPhoneXS MAX 全面适配深色模式

CocoaPods

版本4.0.0

platform:ios,'9.0'target 'MyApp' do pod 'SPAlertController', '~> 4.0.0'end

使用示例

SPAlertController *alert = [SPAlertController alertControllerWithTitle:@"我是主标题" message:@"我是副标题" preferredStyle:SPAlertControllerStyleActionSheet];SPAlertAction *action1 = [SPAlertAction actionWithTitle:@"Default" style:SPAlertActionStyleDefault handler:^(SPAlertAction * _Nonnull action) {}];SPAlertAction *action2 = [SPAlertAction actionWithTitle:@"Destructive" style:SPAlertActionStyleDestructive handler:^(SPAlertAction * _Nonnull action) {}];SPAlertAction *action3 = [SPAlertAction actionWithTitle:@"Cancel" style:SPAlertActionStyleCancel handler:^(SPAlertAction * _Nonnull action) {}];[alert addAction:action1];[alert addAction:action2];[alert addAction:action3]; [self presentViewController: alert animated:YES completion:^{}];

API及属性详解

创建SPAlertController

+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(SPAlertControllerStyle)preferredStyle;

+ (instancetype)alertControllerWithTitle:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(SPAlertControllerStyle)preferredStyle animationType:(SPAlertAnimationType)animationType;

上面2种创建方式唯一的区别就是:第2种方式多了一个animationType参数,该参数可以设置弹出动画。如果以第一种方式创建,会采用默认动画,默认动画跟preferredStyle 有关,如果是SPAlertControllerStyleActionSheet样式,默认动画为从底部弹出,如果是SPAlertControllerStyleAlert样式,默认动画为从中间弹出

SPAlertController的头部配置

title,对话框的主标题message,对话框的副标题attributedTitle,对话框的主标题,富文本attributedMessage,对话框的副标题,富文本image,对话框的头部上的图标,位置处于主标题之上titleColor,对话框主标题的颜色titleFont,对话框主标题的字体messageColor,对话框副标题的颜色messageFont,对话框副标题的字体textAlignment,对话框标题的对齐方式(标题指主标题和副标题)imageLimitSize,对话框头部图标的限制大小,默认是无穷大

SPAlertController的action配置

// 添加action,actions里面存放的就是添加的所有action- (void)addAction:(SPAlertAction *)action;@property (nonatomic, readonly) NSArray *actions;

// 添加文本输入框,textFields存放的就是添加的所有textField- (void)addTextFieldWithConfigurationHandler:(void (^ __nullable)(UITextField *textField))configurationHandler;@property(nullable, nonatomic, readonly) NSArray *textFields;

// SPAlertControllerStyleActionSheet样式下:默认为UILayoutConstraintAxisVertical(垂直排列), 如果设置为UILayoutConstraintAxisHorizontal(水平排列),则除去取消样式action之外的其余action将水平排列;SPAlertControllerStyleAlert样式下:当actions的个数大于2,或者某个action的title显示不全时为UILayoutConstraintAxisVertical(垂直排列),否则默认为UILayoutConstraintAxisHorizontal(水平排列),此样式下设置该属性可以修改所有action的排列方式;不论哪种样式,只要外界设置了该属性,永远以外界设置的优先@property(nonatomic) UILayoutConstraintAxis actionAxis;

SPAlertControllerStyleActionSheet样式下的垂直排列和水平排列

SPAlertControllerStyleAlert样式下的垂直排列和水平排列

// 该属性配置的是距离屏幕边缘的最小间距;SPAlertControllerStyleAlert样式下该属性是指对话框四边与屏幕边缘之间的距离,此样式下默认值随设备变化,SPAlertControllerStyleActionSheet样式下是指弹出边的对立边与屏幕之间的距离,比如如果从右边弹出,那么该属性指的就是对话框左边与屏幕之间的距离,此样式下默认值为70@property(nonatomic, assign) CGFloat minDistanceToEdges;

图中红色画线都是指minDistanceToEdges

// 该属性是制造对话框的毛玻璃效果,3.0版本开始采用的是系统私有类_UIDimmingKnockoutBackdropView所实现@property(nonatomic, assign) BOOL needDialogBlur;

// SPAlertControllerStyleAlert下的偏移量配置 ,CGPoint类型,y值为正向下偏移,为负向上偏移;x值为正向右偏移,为负向左偏移,该属性只对SPAlertControllerStyleAlert样式有效,键盘的frame改变会自动偏移,如果外界手动设置偏移只会取手动设置的@property(nonatomic, assign) CGPoint offsetForAlert;- (void)setOffsetForAlert:(CGPoint)offsetForAlert animated:(BOOL)animated;

// 该API是设置和获取指定action后面的间距,如图中箭头所指,iOS11及其以上才支持- (void)setCustomSpacing:(CGFloat)spacing afterAction:(SPAlertAction *)action API_AVAILABLE(ios(11.0));- (CGFloat)customSpacingAfterAction:(SPAlertAction *)action API_AVAILABLE(ios(11.0));

// 该API是设置背景蒙层的样式,分为半透明和毛玻璃效果,毛玻璃又细分为Dark,ExtraLight,Light3种样式 - (void)setBackgroundViewAppearanceStyle:(SPBackgroundViewAppearanceStyle)style alpha:(CGFloat)alpha;

// 单击背景蒙层是否退出对话框,默认YES@property(nonatomic, assign) BOOL tapBackgroundViewDismiss;

@property(nonatomic, assign) CGFloat cornerRadiusForAlert;

SPAlertControllerStyleAlert下的圆角半径

创建action

// 其中,title为action的标题,创建的时候仅支持普通文本,如果要使用富文本,可以另外设置action的属性attributedTitle,设置后会覆盖普通文本+ (instancetype)actionWithTitle:(nullable NSString *)title style:(SPAlertActionStyle)style handler:(void (^ __nullable)(SPAlertAction *action))handler;

配置action

自定义View

自定义对话框的头部

+ (instancetype)alertControllerWithCustomHeaderView:(nullable UIView *)customHeaderView preferredStyle:(SPAlertControllerStyle)preferredStyle animationType:(SPAlertAnimationType)animationType;

自定义整个对话框

+ (instancetype)alertControllerWithCustomAlertView:(nullable UIView *)customAlertView preferredStyle:(SPAlertControllerStyle)preferredStyle animationType:(SPAlertAnimationType)animationType;

自定义对话框的action部分

+ (instancetype)alertControllerWithCustomActionSequenceView:(nullable UIView *)customActionSequenceView title:(nullable NSString *)title message:(nullable NSString *)message preferredStyle:(SPAlertControllerStyle)preferredStyle animationType:(SPAlertAnimationType)animationType;

关于自定义view的大小

非自动布局,在传入自定义view之前,应该为自定义的view设置好frame,也可以在传入自定义view之后,调用API- (void)updateCustomViewSize:(CGSize)size设置其大小;自动布局,如果宽度和高度都能由子控件撑起来,那么你不需要设置frame,否则,宽度和高度只要有其中一个无法由子控件撑起,那么就必须设置其值,比如高度能被子控件撑起来,而宽度不能,那么你就必须手动设置一个宽度,高度可以不用设置或者设置为0都可。如果是xib或者storyboard,若自定义的view无法由子控件撑起来,SPAlertController会读取xib/storyboard中的默认frame,如果不合适,那么你应该修改xib/storyboard中的默认frame或者用纯代码重新设置frame。如果自定义view的宽度能够被子控件撑起,但同时又手动设置了自定义view的宽度,那么SPAlertController会取自动撑起的宽度和手动设置的宽度中较大的那个,高度同理。有一种情况要值得注意:如果子控件类似按钮这种不设置大小就自动会产生大小的子控件,同时该按钮设置了左右间距,那么它就能将自定义的view的宽度撑起,但是这种撑起来的宽度可能并非你想要的,因为按钮宽度是由内容自动产生,不是你设置的,这时你应该手动设置按钮的宽度,以便自定义的view的宽度被撑起的恰到好处,或者手动设置自定义view的宽度,这个手动设置的宽度,应该要比没有手动设置宽度的按钮将自定义view撑起来的宽度要大。当自定义的view的大小在对话框显示期间发生了变化,你应该调用- (void)updateCustomViewSize:(CGSize)size通知SPAlertController更新其大小

深色模式预览

历史版本

回到顶部

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:SSH框架(spring+struts2+hibernate)+Mysql实现的会议管理系统(功能包含会议室管理、会议管理、用户管理、部门管理、设备管理、个人资料编辑等)
下一篇:JDK源码白话解读之ThreadLocal篇
相关文章

 发表评论

暂时没有评论,来抢沙发吧~