Alert.swift 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. //
  2. // Alert.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 31/08/21.
  6. //
  7. import Foundation
  8. import UIKit
  9. struct Alert {
  10. static func showAlert(on vc:UIViewController, with title:String, message:String) {
  11. let alert = UIAlertController(title: title, message: message, preferredStyle: .alert)
  12. alert.addAction(UIAlertAction(title: Constant.Ok, style: .default, handler: nil))
  13. DispatchQueue.main.async {
  14. vc.present(alert, animated: true, completion: nil)
  15. }
  16. }
  17. static func showAlertWithAction(vc:UIViewController,
  18. title: String,
  19. message: String,
  20. alertStyle:UIAlertController.Style,
  21. actionTitles:[String],
  22. actionStyles:[UIAlertAction.Style],
  23. actions: [((UIAlertAction) -> Void)]){
  24. let alertController = UIAlertController(title: title, message: message, preferredStyle: alertStyle)
  25. for(index, indexTitle) in actionTitles.enumerated(){
  26. let action = UIAlertAction(title: indexTitle, style: actionStyles[index], handler: actions[index])
  27. alertController.addAction(action)
  28. }
  29. DispatchQueue.main.async {
  30. vc.present(alertController, animated: true, completion: nil)
  31. }
  32. }
  33. // //Usage Alert
  34. // self.showAlertWithAction(title: "alert", message: "add your message", alertStyle: .alert, actionTitles: ["Okay", "Cancel"], actionStyles: [.default, .cancel], actions: [{_ in
  35. // print("okay click")
  36. // },
  37. // {_ in
  38. // print("cancel click")
  39. // }
  40. // ])
  41. // //Usage ActionSheet
  42. // self.showAlertWithAction(title: "actionsheet",
  43. // message: "add your message",
  44. // alertStyle: .actionSheet,
  45. // actionTitles: ["Okay", "Cancel"],
  46. // actionStyles: [.default, .cancel],
  47. // actions: [
  48. // {_ in
  49. // print("okay click")
  50. // },
  51. // {_ in
  52. // print("cancel click")
  53. // }
  54. // ])
  55. //Show Common Alert like internet failure
  56. static func showInternetFailureAlert(on vc:UIViewController){
  57. showAlertWithAction(vc: vc, title: Constant.internetAlertTitle, message: Constant.internetAlertMessage, alertStyle: .alert, actionTitles: ["Cancel", "Open Setting"], actionStyles: [.cancel, .default], actions: [
  58. {_ in
  59. print("cancel click")
  60. },
  61. {_ in
  62. if let url = URL.init(string: UIApplication.openSettingsURLString) {
  63. UIApplication.shared.open(url, options: [:], completionHandler: nil)
  64. }
  65. }
  66. ])
  67. }
  68. //Show Specific Alerts like Valid or Invalid
  69. static func showInvalidAlert(on vc:UIViewController){
  70. showAlert(on: vc, with: Constant.defaultTitle, message: Constant.defaultMsg)
  71. }
  72. }