willsonlincake 发表于 2022-4-10 16:22:51

iOS消息框

var alert = UIAlertView()
    alert.title = "HelloWorld"
    alert.message = "DO YOU WANT TO PLAY"
    alert.addButtonWithTitle("Yes")
    alert.addButtonWithTitle("No")
    alert.show()

页: [1]
查看完整版本: iOS消息框