zoukankan      html  css  js  c++  java
  • Swift3 使用系统UIAlertView方法做吐司效果

        

       /**
         *显示弹出信息
         */
        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)
        }
    

      

  • 相关阅读:
    duilib clabelui 属性
    C++ 时间戳和时间的互相转换
    VS提示已有主体显示 的error解决办法
    Webrtc createoffer以后没有 onsuccess的回调
    VS error LNK2019: 无法解析的外部符号 _AcquireCredentialsHandleA
    VS LNK2019 无法解析的外部符号_GetAdaptersAddresses@20 错误解决办法
    duilib xml布局文件的属性设置
    Doris安装
    Oozie初探
    Notepad++ 常规骚操作
  • 原文地址:https://www.cnblogs.com/mapanguan/p/UIAlertView.html
Copyright © 2011-2022 走看看