Extension.swift 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //
  2. // Extension.swift
  3. // LMS
  4. //
  5. // Created by Suraj Kumar Mandal on 17/08/22.
  6. //
  7. import Foundation
  8. import UIKit
  9. extension UIApplication {
  10. class func isFirstLaunch() -> Bool {
  11. if !UserDefaults.standard.bool(forKey: "hasBeenLaunchedBeforeFlag") {
  12. UserDefaults.standard.set(true, forKey: "hasBeenLaunchedBeforeFlag")
  13. UserDefaults.standard.synchronize()
  14. return true
  15. }
  16. return false
  17. }
  18. }
  19. extension UIWindow {
  20. static var key: UIWindow? {
  21. if #available(iOS 13, *) {
  22. return UIApplication.shared.windows.first { $0.isKeyWindow }
  23. } else {
  24. return UIApplication.shared.keyWindow
  25. }
  26. }
  27. }
  28. extension UIApplication {
  29. static var release: String {
  30. return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as! String? ?? "x.x"
  31. }
  32. static var build: String {
  33. return Bundle.main.object(forInfoDictionaryKey: "CFBundleVersion") as! String? ?? "x"
  34. }
  35. static var version: String {
  36. return "\(release).\(build)"
  37. }
  38. }
  39. extension UIView {
  40. func dropShadow(scale: Bool = true) {
  41. layer.masksToBounds = false
  42. layer.shadowColor = UIColor.black.cgColor
  43. layer.shadowOpacity = 0.2
  44. layer.shadowOffset = .zero
  45. layer.shadowRadius = 1
  46. layer.shouldRasterize = true
  47. layer.rasterizationScale = scale ? UIScreen.main.scale : 1
  48. }
  49. func addShadow() {
  50. self.layer.shadowColor = UIColor.gray.cgColor
  51. self.layer.shadowOffset = CGSize(width: 1, height: 1)
  52. self.layer.shadowOpacity = 1
  53. }
  54. }
  55. extension UIScrollView {
  56. func scrollToTop() {
  57. let desiredOffset = CGPoint(x: 0, y: -contentInset.top)
  58. setContentOffset(desiredOffset, animated: true)
  59. }
  60. }
  61. extension UIScrollView {
  62. func scrollViewToTop( _ someView:UIView){
  63. let targetViewTop = someView.frame.origin.y
  64. let viewToTop = targetViewTop - self.contentInset.top
  65. self.setContentOffset(CGPoint(x: 0, y: viewToTop), animated: true)
  66. }
  67. }
  68. extension Bundle {
  69. // Name of the app - title under the icon.
  70. var displayName: String? {
  71. return object(forInfoDictionaryKey: "CFBundleDisplayName") as? String ??
  72. object(forInfoDictionaryKey: "CFBundleName") as? String
  73. }
  74. }
  75. extension UIDatePicker {
  76. func setMonthYearPicker() {
  77. self.datePickerMode = .date
  78. let currentDate = Date()
  79. self.maximumDate = currentDate
  80. let calendar = Calendar(identifier: .gregorian)
  81. var components = calendar.dateComponents([.year, .month], from: currentDate)
  82. components.calendar = calendar
  83. self.date = components.date!
  84. }
  85. }
  86. extension Encodable {
  87. func toDictionary() -> [String: Any]? {
  88. guard let data = try? JSONEncoder().encode(self) else {
  89. return nil
  90. }
  91. return (try? JSONSerialization.jsonObject(with: data, options: .allowFragments)) as? [String: Any]
  92. }
  93. }
  94. extension UIViewController {
  95. func dismissAllAlerts() {
  96. if let rootViewController = UIApplication.shared.windows.first?.rootViewController {
  97. var topViewController = rootViewController
  98. while let presentedViewController = topViewController.presentedViewController {
  99. if let alert = presentedViewController as? UIAlertController {
  100. alert.dismiss(animated: false, completion: nil)
  101. }
  102. topViewController = presentedViewController
  103. }
  104. }
  105. }
  106. }