AppExtention.swift 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. //
  2. // AppExtention.swift
  3. // Learn Genie
  4. //
  5. // Created by Suraj Kumar Mandal on 02/09/21.
  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 String {
  20. var htmlToAttributedString: NSAttributedString? {
  21. guard let data = data(using: .utf8) else { return NSAttributedString() }
  22. do {
  23. return try NSAttributedString(data: data, options: [.documentType: NSAttributedString.DocumentType.html, .characterEncoding:String.Encoding.utf8.rawValue], documentAttributes: nil)
  24. } catch {
  25. return NSAttributedString()
  26. }
  27. }
  28. var htmlToString: String {
  29. return htmlToAttributedString?.string ?? ""
  30. }
  31. //  Stripping out HTML tags from a string
  32. public func trimHTMLTags() -> String? {
  33. guard let htmlStringData = self.data(using: String.Encoding.utf8) else {
  34. return nil
  35. }
  36. let options: [NSAttributedString.DocumentReadingOptionKey : Any] = [
  37. .documentType: NSAttributedString.DocumentType.html,
  38. .characterEncoding: String.Encoding.utf8.rawValue
  39. ]
  40. let attributedString = try? NSAttributedString(data: htmlStringData, options: options, documentAttributes: nil)
  41. return attributedString?.string
  42. }
  43. func stringBefore(_ delimiter: Character) -> String {
  44. if let index = firstIndex(of: delimiter) {
  45. return String(prefix(upTo: index))
  46. } else {
  47. return ""
  48. }
  49. }
  50. func stringAfter(_ delimiter: Character) -> String {
  51. if let index = firstIndex(of: delimiter) {
  52. return String(suffix(from: index).dropFirst())
  53. } else {
  54. return ""
  55. }
  56. }
  57. func toDateString( inputDateFormat inputFormat : String, ouputDateFormat outputFormat : String ) -> String {
  58. let dateFormatter = DateFormatter()
  59. dateFormatter.dateFormat = inputFormat
  60. let date = dateFormatter.date(from: self)
  61. dateFormatter.dateFormat = outputFormat
  62. return dateFormatter.string(from: date!)
  63. }
  64. }
  65. extension Data {
  66. init<T>(fromArray values: [T]) {
  67. var values = values
  68. self.init(buffer: UnsafeBufferPointer(start: &values, count: values.count))
  69. }
  70. func toArray<T>(type: T.Type) -> [T] {
  71. let value = self.withUnsafeBytes {
  72. $0.baseAddress?.assumingMemoryBound(to: T.self)
  73. }
  74. return [T](UnsafeBufferPointer(start: value, count: self.count / MemoryLayout<T>.stride))
  75. }
  76. }
  77. extension UITextField {
  78. func datePicker<T>(target: T,
  79. doneAction: Selector,
  80. cancelAction: Selector,
  81. datePickerMode: UIDatePicker.Mode = .date) {
  82. let screenWidth = UIScreen.main.bounds.width
  83. func buttonItem(withSystemItemStyle style: UIBarButtonItem.SystemItem) -> UIBarButtonItem {
  84. let buttonTarget = style == .flexibleSpace ? nil : target
  85. let action: Selector? = {
  86. switch style {
  87. case .cancel:
  88. return cancelAction
  89. case .done:
  90. return doneAction
  91. default:
  92. return nil
  93. }
  94. }()
  95. let barButtonItem = UIBarButtonItem(barButtonSystemItem: style,
  96. target: buttonTarget,
  97. action: action)
  98. return barButtonItem
  99. }
  100. let datePicker = UIDatePicker(frame: CGRect(x: 0,
  101. y: 0,
  102. width: screenWidth,
  103. height: 216))
  104. datePicker.datePickerMode = datePickerMode
  105. datePicker.maximumDate = Date()
  106. // iOS 14 and above
  107. if #available(iOS 14, *) {
  108. datePicker.preferredDatePickerStyle = .wheels
  109. datePicker.sizeToFit()
  110. }
  111. self.inputView = datePicker
  112. let toolBar = UIToolbar(frame: CGRect(x: 0,
  113. y: 0,
  114. width: screenWidth,
  115. height: 44))
  116. toolBar.setItems([buttonItem(withSystemItemStyle: .cancel),
  117. buttonItem(withSystemItemStyle: .flexibleSpace),
  118. buttonItem(withSystemItemStyle: .done)],
  119. animated: true)
  120. self.inputAccessoryView = toolBar
  121. }
  122. }
  123. extension UIWindow {
  124. static var key: UIWindow? {
  125. if #available(iOS 13, *) {
  126. return UIApplication.shared.windows.first { $0.isKeyWindow }
  127. } else {
  128. return UIApplication.shared.keyWindow
  129. }
  130. }
  131. }
  132. extension String {
  133. var isValidEmail: Bool {
  134. NSPredicate(format: "SELF MATCHES %@", "[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,}").evaluate(with: self)
  135. }
  136. }