UIImage.swift 396 B

1234567891011121314151617181920
  1. //
  2. // UIImage.swift
  3. // MockKitUI
  4. //
  5. // Created by Pete Schwamb on 5/11/21.
  6. // Copyright © 2021 LoopKit Authors. All rights reserved.
  7. //
  8. import UIKit
  9. private class FrameworkBundle {
  10. static let main = Bundle(for: FrameworkBundle.self)
  11. }
  12. extension UIImage {
  13. convenience init?(frameworkImage name: String) {
  14. self.init(named: name, in: FrameworkBundle.main, with: nil)
  15. }
  16. }