简单介绍
UIAlertView和UIActionSheet在iOS8.3之后不被官方推荐使用了,取而代之的是UIAlertController;尽管不被推荐使用,但是使用起来依旧方便简洁,接下来为你介绍其简单的使用方法.
UIAlertView
UIAlertView,带有输入框的提示框,居中显示;在iOS9.0之后就弃用了,具体代码如下:
- (void)alertView
{
UIAlertView *alert =[[UIAlertView alloc]initWithTitle:@"warning" message:@"危险操作请注意" delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"确定", nil];
alert.alertViewStyle = UIAlertViewStyleDefault;
[alert show];
}
其中UIAlertViewStyle有以下4种
UIAlertViewStyleDefault,
UIAlertViewStyleSecureTextInput, //密码输入框风格
UIAlertViewStylePlainTextInput, //普通输入框风格
UIAlertViewStyleLoginAndPasswordInput //账号密码框风格
实现代理(<UIAlertViewDelegate>)方法监听点击事件:
- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
判断buttonIndex来确定是哪个按钮
}
UIActionSheet
UIActionSheet,标准提示框,底部显示,在iOS8.3弃用,初始化方法如下:
- (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionSheetDelegate>)delegate cancelButtonTitle:(NSString *)cancelButtonTitle destructiveButtonTitle:(NSString *)destructiveButtonTitle otherButtonTitles:(NSString *)otherButtonTitles, ...);
参数说明:
title:视图标题
delegate:设置代理
cancelButtonTitle:取消按钮的标题
destructiveButtonTitle:特殊标记的按钮的标题
otherButtonTitles:其他按钮的标题
实现代理(<UIActionSheetDelegate>)方法监听点击事件:
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex{
判断buttonIndex来确定是哪个按钮
}
UIAlertController
UIAlertController相当于UIAlertView和UIActionSheet的结合,自iOS8.3至今一直在使用,以点击弹出推荐好友为例:
///推荐给好友
- (void)makeAlertController{
UIAlertController *alertController = [UIAlertController alertControllerWithTitle: nil message: nil preferredStyle:UIAlertControllerStyleActionSheet];
//添加Button,根据需求不同,可以添加多个button,点击事件在block中执行
[alertController addAction: [UIAlertAction actionWithTitle: @"分享给微信好友" style: UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
//处理分享给微信好友
}]];
[alertController addAction: [UIAlertAction actionWithTitle: @"分享到朋友圈" style: UIAlertActionStyleDefault handler:^(UIAlertAction *action){
//处理分享到朋友圈
}]];
[alertController addAction: [UIAlertAction actionWithTitle: @"取消" style: UIAlertActionStyleCancel handler:nil]];
//以模态的形式在window上显示提示框
[self presentViewController: alertController animated: YES completion: nil];
}
Title和message是看自己的需求传值,要实现上图中的效果只需要传nil即可,preferredStyle是设置提示框的类型,有两种可以选择:
// 底部提示框
UIAlertControllerStyleActionSheet
// 中部提示框
UIAlertControllerStyleAlert
添加按钮的方法里style也有三个可以选择,根据自己需求选择即可:
UIAlertActionStyleDefault, //默认
UIAlertActionStyleCancel, //取消
UIAlertActionStyleDestructive //警告
接下来为你介绍Swift中提示框的使用方法
UIAlertView
设置情景为点击按钮来触发提示框弹出事件,按钮的具体个数可以根据otherButtonTitles后面的参数来设定,见如下代码:
@IBAction func showAlertView(_ sender: UIButton) {
let alertView = UIAlertView(title: "Hi Friends!", message: "How are you?", delegate: self, cancelButtonTitle: "no", otherButtonTitles: "yes")
alertView.alertViewStyle = .plainTextInput
alertView.show()
}
开发文档中指出UIAlertViewStyle也有四种样式:
public enum UIAlertViewStyle : Int {
case `default` //默认样式
case secureTextInput //输入密码样式
case plainTextInput //普通输入样式
case loginAndPasswordInput //账号和密码输入样式
}
触发按钮的点击事件也是要采用代理来完成:
func alertView(_ alertView: UIAlertView, clickedButtonAt buttonIndex: Int){
//根据buttonIndex来确定那个按钮的点击
}
** UIActionSheet得用发和上面的基本相同,作用主要相差在UIActionSheet是底部弹出框,而UIAlertView是中央弹出框,在这就不多描述了.**
UIAlertController
@IBAction func btnClick(_ sender: UIButton) {
//初始化 AlertController preferredStyle的方式有actionSheet,alert两种,来设置弹出位置
let alertController = UIAlertController(title: "Hi Friends!", message: "How are you?", preferredStyle: .actionSheet)
//设置 Actions 点击出发的响应事件都写在相应的代码块里
let yesAction = UIAlertAction(title: "yes", style: .default){ (action) -> Void in
print("ok!")
}
let noAction = UIAlertAction(title: "no", style: .default){ (action) -> Void in
print("no!")
}
//添加 Actions,添加的先后和显示的先后顺序是有关系的
alertController.addAction(yesAction)
alertController.addAction(noAction)
//展示Alert Controller
self.present(alertController, animated: true, completion: nil)
}
总结
虽然UIAlertView和UIActionSheet在iOS8.3之后就过期了,但是仍然可以继续使用。而在OC或Swift中用法也基本相似,其实不是很难. 吾生也有涯,而知也无涯!我们一起加油吧~