Refactor more modules

This commit is contained in:
Peter
2019-08-05 15:04:45 +03:00
parent 287be2785e
commit 9ac37c00c0
498 changed files with 8516 additions and 2777 deletions

View File

@@ -0,0 +1,13 @@
import Foundation
import UIKit
private class FrameworkBundleClass: NSObject {
}
let frameworkBundle: Bundle = Bundle(for: FrameworkBundleClass.self)
extension UIImage {
convenience init?(bundleImageName: String) {
self.init(named: bundleImageName, in: frameworkBundle, compatibleWith: nil)
}
}