123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- //
- // CommonUntils.swift
- // CommonFrame
- //
- // Created by Virgil on 2017/5/6.
- // Copyright © 2017年 Virgil. All rights reserved.
- //
- import UIKit
- class CommonUntils: CommonBaseUntils {
- class func isIphonex() -> Bool {
- if ScreenWidth / ScreenHeight < 0.5 {
- return true
- } else {
- return false
- }
- }
- //class funcF
- ///拷贝字符串到uu剪贴板
- class func copyString(str: String) {
- let pasteboard = UIPasteboard.general
- pasteboard.string = str
- }
- ///打开QQ 客服
- class func openQQCustomerService(qq: String) {
- if !UIApplication.shared.canOpenURL(URL(string: "mqq://")!) {
- SVProgressHUD.showError(withStatus: "请先安装QQ!")
- return
- }
- let urlStr = "mqq://im/chat?chat_type=wpa&uin=\(qq)&version=1&src_type=web"
- UIApplication.shared.openURL(URL(string: urlStr)!)
- }
- ///alert字符串信息
- class func alert(message: String) {
- // let alertV = LGAlertView(title: "提示", message: message, style:.alert , buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil)
- // alertV.show(animated: true, completionHandler: nil)
- AlertView(controller: appDelegate.navController, title: "提示", message: message, buttons: ["确定"], style: .alert)
- }
- ///alert字符串信息
- class func alertNoData() {
- var message = "暂无数据"
- // let alert = LGAlertView(title: "提示", message: message, style:.alert , buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil)
- //
- // //let alert = UIAlertView(title: "提示", message: message, delegate: nil, cancelButtonTitle: "确认")
- // alert.show(animated: true, completionHandler: nil)
- //
- //
- AlertView(controller: appDelegate.navController, title: "提示", message: message, buttons: ["确定"], style: .alert)
- }
- ///请求返回提示
- class func alertNoData(json: NSDictionary) {
- var message = ""
- message = json.object(forKey: "CNMsg") as! String
- AlertView(controller: appDelegate.navController, title: "提示", message: message, buttons: ["确定"], style: .alert)
- // let alert = LGAlertView(title: "提示", message: message, style:.alert , buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil)
- // alert.show(animated: true, completionHandler: nil)
- }
- class func alertServiceError() {
- self.alert(message: "服务器异常")
- }
- class func alertNetworkError() {
- self.alert(message: "连接失败,请检查您的网络")
- }
- class func alertLocaltionkError() {
- self.alert(message: "定位失败,请开启定位服务后重试!")
- }
- class func alertError(error: NSError) {
- if !isAlertError {
- isAlertError = true
- AlertView(controller: appDelegate.navController, title: "提示", message: "数据请求失败,请检查网络是否可用并设置允许APP使用网络!", buttons: ["立即设置"], style: .alert, actionHandler: { (_, _) in
- isAlertError = false
- UIApplication.shared.openURL(URL(string: UIApplication.openSettingsURLString)!)
- }, cancelHandler: {
- isAlertError = false
- }, destructiveHandler: {
- isAlertError = false
- })
- // let selectImage = LGAlertView(title: "提示", message: "数据请求失败,请检查网络是否可用并设置允许APP使用网络!", style: .alert, buttonTitles: ["立即设置"], cancelButtonTitle: "取消", destructiveButtonTitle: nil ,actionHandler: { (alertView, title, index) -> Void in
- // isAlertError = false;
- // UIApplication.shared.openURL(URL(string:UIApplicationOpenSettingsURLString)!);
- // }, cancelHandler: { (view) in
- // isAlertError = false;
- // } , destructiveHandler: nil)
- // selectImage.show(animated: true, completionHandler: nil)
- }
- // let selectImage = LGAlertView(title: "提示", message: "数据请求失败,请检查网络是否可用并设置允许APP使用网络!", style: .alert, buttonTitles: ["立即设置"], cancelButtonTitle: "取消", destructiveButtonTitle: nil ,actionHandler: { (alertView, title, index) -> Void in
- // UIApplication.shared.openURL(URL(string:UIApplicationOpenSettingsURLString)!);
- // }, cancelHandler: nil , destructiveHandler: nil)!
- // selectImage.show(animated: true, completionHandler: nil)
- }
- class func isConnectionAvailable() -> Bool {
- return true
- }
- }
|