import UIKit
class ViewController : UIViewController , UIActionSheetDelegate {
override func viewDidLoad() {
super .viewDidLoad()
}
override func viewDidAppear(animated: Bool ){
super .viewDidAppear(animated)
var alertController = UIAlertController (title: "系统提示" ,
message: "您确定要离开hangge.com吗?" , preferredStyle: UIAlertControllerStyle . Alert )
var cancelAction = UIAlertAction (title: "取消" , style: UIAlertActionStyle . Cancel , handler: nil )
var okAction = UIAlertAction (title: "好的" , style: UIAlertActionStyle . Default , handler: nil )
alertController.addAction(cancelAction)
alertController.addAction(okAction)
self .presentViewController(alertController, animated: true , completion: nil )
}
override func didReceiveMemoryWarning() {
super .didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
}
|