UIImage.swift 404 B

1234567891011121314151617181920
  1. //
  2. // UIImage.swift
  3. // LoopKitUI
  4. //
  5. // Created by Nathaniel Hamming on 2020-07-15.
  6. // Copyright © 2020 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. }