SYAlertController
自定义弹窗子视图UI 根据UI设计需求,自定义各种样式的弹窗子视图:
- 自定义UI及样式
- 自定义显示动画
- 编辑控件自适应键盘高度
效果图
- 使用介绍
- 自动导入:使用命令
pod 'SYAlertViewController'
导入到项目中 - 手动导入:或下载源码后,将源码添加到项目中
- 自动导入:使用命令
代码示例
1、导入头文件
#import "SYAlertViewController.h"
2、实例化
SYAlertViewController *alertView = [[SYAlertViewController alloc] init];
// 启用显示时的动画效果(默认未启用)
alertView.isAnimation = YES;
// 自定义动画效果(isAnimation为YES时有效)
CATransition *animation = [CATransition animation];
[animation setDuration:0.35f];
[animation setFillMode:kCAFillModeForwards];
[animation setTimingFunction:[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseOut]];
[animation setType:@"cube"];
[animation setSubtype:@"fromRight"];
alertView.animation = animation;
// 适配键盘与编辑框的间距(默认未启用)
alertView.adjustKeyboardHeight = YES;
// 键盘与编辑框的间距(adjustKeyboardHeight为YES时有效)
alertView.originSpace = 20.0f;
3、子视图设置
// 自定义的子视图
UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, 200.0f, 110.0f)];
UILabel *message = [[UILabel alloc] initWithFrame:CGRectMake(20.0f, 20.0f, 160.0f, 40.0f)];
message.text = @"弹窗信息";
[view addSubview:message];
UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(20.0f, 70.0f, 160.0f, 30.0f)];
[button setTitle:@"知道了" forState:UIControlStateNormal];
[button addTarget:self action:@selector(closeClick:) forControlEvents:UIControlEventTouchUpInside]
[view addSubview:button];
方法1
alertView.showContainerView = view;
方法2
alertView.containerView.frame = CGRectMake(20.0f, (alertView.frame.size.height - view.frame.size.height) / 2, view.frame.size.width, view.frame.size.height);
[alertView.containerView addSubview:view];
4、方法调用
显示
[alertView show];
隐藏
[alertView hide];
注意:项目中使用了
IQKeyboardManager
后,则设置adjustKeyboardHeight
值为NO
。
修改说明
-
20190129
- 版本号:1.1.0, 1.1.1, 1.2.0
- 修改完善
-
20180728
- 版本号:1.0.4
- 优化完善
- 修改成UIViewController类型弹窗
- 添加编辑时是否适配键盘间距属性
adjustKeyboardHeight
-
20180724
- 版本号:1.0.3
- 优化完善
- 添加属性
originSpace
设置编辑视图与键盘间距 - 结束编辑后,视图恢复原点位置
- 切换编辑视图时,位置改变
- 添加属性
-
20180718
- 版本号:1.0.2
- 修改文档说明
-
20180717
- 版本号:1.0.2
- 修改异常:设置属性showContainerView时,默认居中
-
20180608
- 版本号:1.0.1
- 功能完善
- 编辑控件时,自适应键盘高度避免被键盘遮挡
- 自定义显示动画
-
20180605
- 版本号:1.0.0
- 添加源码