CommonUntils.swift 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. //
  2. // CommonUntils.swift
  3. // CommonFrame
  4. //
  5. // Created by Virgil on 2017/5/6.
  6. // Copyright © 2017年 Virgil. All rights reserved.
  7. //
  8. import UIKit
  9. class CommonUntils: CommonBaseUntils {
  10. class func isIphonex() -> Bool {
  11. if ScreenWidth / ScreenHeight < 0.5 {
  12. return true
  13. } else {
  14. return false
  15. }
  16. }
  17. //class funcF
  18. ///拷贝字符串到uu剪贴板
  19. class func copyString(str: String) {
  20. let pasteboard = UIPasteboard.general
  21. pasteboard.string = str
  22. }
  23. ///打开QQ 客服
  24. class func openQQCustomerService(qq: String) {
  25. if !UIApplication.shared.canOpenURL(URL(string: "mqq://")!) {
  26. SVProgressHUD.showError(withStatus: "请先安装QQ!")
  27. return
  28. }
  29. let urlStr = "mqq://im/chat?chat_type=wpa&uin=\(qq)&version=1&src_type=web"
  30. UIApplication.shared.openURL(URL(string: urlStr)!)
  31. }
  32. ///alert字符串信息
  33. class func alert(message: String) {
  34. // let alertV = LGAlertView(title: "提示", message: message, style:.alert , buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil)
  35. // alertV.show(animated: true, completionHandler: nil)
  36. AlertView(controller: appDelegate.navController, title: "提示", message: message, buttons: ["确定"], style: .alert)
  37. }
  38. ///alert字符串信息
  39. class func alertNoData() {
  40. var message = "暂无数据"
  41. // let alert = LGAlertView(title: "提示", message: message, style:.alert , buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil)
  42. //
  43. // //let alert = UIAlertView(title: "提示", message: message, delegate: nil, cancelButtonTitle: "确认")
  44. // alert.show(animated: true, completionHandler: nil)
  45. //
  46. //
  47. AlertView(controller: appDelegate.navController, title: "提示", message: message, buttons: ["确定"], style: .alert)
  48. }
  49. ///请求返回提示
  50. class func alertNoData(json: NSDictionary) {
  51. var message = ""
  52. message = json.object(forKey: "CNMsg") as! String
  53. AlertView(controller: appDelegate.navController, title: "提示", message: message, buttons: ["确定"], style: .alert)
  54. // let alert = LGAlertView(title: "提示", message: message, style:.alert , buttonTitles: ["确定"], cancelButtonTitle: nil, destructiveButtonTitle: nil)
  55. // alert.show(animated: true, completionHandler: nil)
  56. }
  57. class func alertServiceError() {
  58. self.alert(message: "服务器异常")
  59. }
  60. class func alertNetworkError() {
  61. self.alert(message: "连接失败,请检查您的网络")
  62. }
  63. class func alertLocaltionkError() {
  64. self.alert(message: "定位失败,请开启定位服务后重试!")
  65. }
  66. class func alertError(error: NSError) {
  67. if !isAlertError {
  68. isAlertError = true
  69. AlertView(controller: appDelegate.navController, title: "提示", message: "数据请求失败,请检查网络是否可用并设置允许APP使用网络!", buttons: ["立即设置"], style: .alert, actionHandler: { (_, _) in
  70. isAlertError = false
  71. UIApplication.shared.openURL(URL(string: UIApplication.openSettingsURLString)!)
  72. }, cancelHandler: {
  73. isAlertError = false
  74. }, destructiveHandler: {
  75. isAlertError = false
  76. })
  77. // let selectImage = LGAlertView(title: "提示", message: "数据请求失败,请检查网络是否可用并设置允许APP使用网络!", style: .alert, buttonTitles: ["立即设置"], cancelButtonTitle: "取消", destructiveButtonTitle: nil ,actionHandler: { (alertView, title, index) -> Void in
  78. // isAlertError = false;
  79. // UIApplication.shared.openURL(URL(string:UIApplicationOpenSettingsURLString)!);
  80. // }, cancelHandler: { (view) in
  81. // isAlertError = false;
  82. // } , destructiveHandler: nil)
  83. // selectImage.show(animated: true, completionHandler: nil)
  84. }
  85. // let selectImage = LGAlertView(title: "提示", message: "数据请求失败,请检查网络是否可用并设置允许APP使用网络!", style: .alert, buttonTitles: ["立即设置"], cancelButtonTitle: "取消", destructiveButtonTitle: nil ,actionHandler: { (alertView, title, index) -> Void in
  86. // UIApplication.shared.openURL(URL(string:UIApplicationOpenSettingsURLString)!);
  87. // }, cancelHandler: nil , destructiveHandler: nil)!
  88. // selectImage.show(animated: true, completionHandler: nil)
  89. }
  90. class func isConnectionAvailable() -> Bool {
  91. return true
  92. }
  93. }