自動關掉提示視窗

rusli
Site Admin
文章: 212
註冊時間: 週三 7月 07, 2010 9:49 pm

自動關掉提示視窗

文章rusli » 週六 12月 05, 2015 3:45 pm

代碼: 選擇全部


        let alertController = UIAlertController(title: "Confirm", message: message, preferredStyle: UIAlertControllerStyle.Alert)
        self.presentViewController(alertController, animated: true, completion: nil)

      // Delay the dismissal by 2 seconds
        let delay = 2.0 * Double(NSEC_PER_SEC)
        let time = dispatch_time(DISPATCH_TIME_NOW, Int64(delay))
        dispatch_after(time, dispatch_get_main_queue(), {
            alertController.dismissViewControllerAnimated(true, completion: nil)
        })


回到「Swift」

誰在線上

正在瀏覽這個版面的使用者:沒有註冊會員 和 1 位訪客