ios开发swiftUIAlertView

来源:互联网 发布:淘宝云客服工资算法 编辑:程序博客网 时间:2024/06/07 16:10
var alertWithTextField = UIAlertView(title: "提醒", message: "请输入您的抢单宣言", delegate: self, cancelButtonTitle: "算了", otherButtonTitles: "抢!")        alertWithTextField.alertViewStyle = UIAlertViewStyle.PlainTextInput        alertWithTextField.show()

0 0