gpt4 book ai didi

ios - UIAlertView 的正确使用方法?

转载 作者:行者123 更新时间:2023-11-28 10:26:04 26 4
gpt4 key购买 nike

我还没有收到任何错误,但我只想知道这样做是否“合法”,让我们考虑以下示例:

class SomeView : UIViewController { 
var alertView:UIAlertView = UIAlertView()

@IBAction func buttonOne(sender: UIButton) {
alertView.title = "Button Pressed 1"
alertView.message = "Button Message 1"
alertView.delegate = self
alertView.addButtonWithTitle("OK")
alertView.show()
}

@IBAction func buttonOne(sender: UIButton) {
alertView.title = "Button Pressed 2"
alertView.message = "Button Message 2"
alertView.delegate = self
alertView.addButtonWithTitle("OK")
alertView.show()
}

}

这是使用 UIAlertView 的有效方式吗?还是我每次使用它时都需要声明它?只是为了确保这在未来不会成为问题。

最佳答案

在 iOS 8 中,UIAlertView 已被弃用。现在 UIAlertController 是一个单独的类,用于创建我们所知的 UIAlertView 并与之交互。这是创建它的方法:-

var alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))
self.presentViewController(alert, animated: true, completion: nil)

创建用于处理警报事件的处理程序

var alert = UIAlertController(title: "Alert", message: "Message", preferredStyle: UIAlertControllerStyle.Alert)
alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))
alert.addAction(UIAlertAction(title: "Ok", style: .Default, handler: { action in
switch action.style{
case .Default:
println("default")
break

case .Cancel:
println("cancel")
break

case .Destructive:
println("destructive")
break
}
}))
self.presentViewController(alert, animated: true, completion: nil)

礼貌:- http://ashishkakkad.wordpress.com/2014/07/21/working-with-alert-in-swift-language-ios-8-xcode-6/

关于ios - UIAlertView 的正确使用方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25306329/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com