swift 提示框大全

常规提示框(显示位置在中间)

let alertController = UIAlertController(title:"提示哦",message:"我是提示信息",preferredStyle: .alert);
        let canceAction = UIAlertAction(title:"取消",style:.cancel,handler:nil);
        let okAciton = UIAlertAction(title:"确定",style:.default,handler: {
            action in
            print("他点击了确定")
        })
        alertController.addAction(canceAction);
        alertController.addAction(okAciton);
        self.present(alertController, animated: true, completion: nil)

//底部提示框

let alertController = UIAlertController(title:"选取照片",message:"请选择照片来源",preferredStyle: .actionSheet);
        let canceAction = UIAlertAction(title:"取消",style:.cancel,handler:nil);
        let photosAciton = UIAlertAction(title:"图库",style:.default,handler: {
            action in
            print("他点击了库图")
        })
        let CrameAction = UIAlertAction(title:"相机",style:.destructive,handler:{
            acion in
            print("他选择了相机")
        })
        alertController.addAction(canceAction);
        alertController.addAction(photosAciton);
        alertController.addAction(CrameAction);
        self.present(alertController, animated: true, completion: nil)

//带有输入框提示框

//        let alertController = UIAlertController(title:"系统登入",message:"请输入用户名和密码",preferredStyle: .alert);
//        alertController.addTextField { (textField:UITextField!) in
//            textField.placeholder = "用户名";
//        }
//        alertController.addTextField{(textField:UITextField!) in
//            textField.placeholder = "密码";
//            textField.isSecureTextEntry = true;
//
//        }
//        let canceAction = UIAlertAction(title:"取消",style:.cancel,handler:nil);
//                let okAciton = UIAlertAction(title:"确定",style:.default,handler: {
//                    action in
//                    print("他点击了确定")
//                    print("用户名:\(alertController.textFields!.first?.text) 密码:\(alertController.textFields!.last?.text)")
//                })
//
//        alertController.addAction(canceAction);
//        alertController.addAction(okAciton);
//        self.present(alertController,animated:true,completion: nil);

//提示框 设定时间消失

  let alertController = UIAlertController(title: "保存成功!",
                                                message: nil, preferredStyle: .alert)
        //显示提示框
        self.present(alertController, animated: true, completion: nil)
        //两秒钟后自动消失

        DispatchQueue.main.asyncAfter(deadline: DispatchTime.now()+2) {
            self.presentedViewController?.dismiss(animated: false, completion: nil);
        }

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值