首页 > 移动平台 > 详细

IOS(Swift)使用系统UIAlertView方法做吐司效果

时间:2017-02-13 12:44:33      阅读:595      评论:0      收藏:0      [点我收藏+]

    

   /**
     *显示弹出信息
     */
    class func showAlertMessage(_ str:String,showtime Num:Double){
        
        let alert = UIAlertView(title: str, message: nil, delegate: nil, cancelButtonTitle: nil);
        alert.show()
        //        self.performSelector(#selector(dismissAlert(_:)), withObject: alert, afterDelay: Num)
        let dispatchTime: DispatchTime = DispatchTime.now() + Double(Int64(0.10 * Num * Double(NSEC_PER_SEC))) / Double(NSEC_PER_SEC)
        DispatchQueue.main.asyncAfter(deadline: dispatchTime, execute: {
            dismissAlert(alert)
        })
    }
    
    class func dismissAlert(_ alert:UIAlertView){
        alert.dismiss(withClickedButtonIndex: alert.cancelButtonIndex, animated: true)
    }

  

IOS(Swift)使用系统UIAlertView方法做吐司效果

原文:http://www.cnblogs.com/mapanguan/p/UIAlertView.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!