forked from LoopKit/LoopKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUIImage.swift
More file actions
27 lines (24 loc) · 713 Bytes
/
UIImage.swift
File metadata and controls
27 lines (24 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// UIImage.swift
// LoopKitUI
//
// Created by Nathaniel Hamming on 2020-07-15.
// Copyright © 2020 LoopKit Authors. All rights reserved.
//
import UIKit
private class LocalBundle {
/// Returns the resource bundle associated with the current Swift module.
static var main: Bundle = {
if let mainResourceURL = Bundle.main.resourceURL,
let bundle = Bundle(url: mainResourceURL.appendingPathComponent("LoopKitUI_LoopKitUI.bundle"))
{
return bundle
}
return Bundle(for: LocalBundle.self)
}()
}
extension UIImage {
convenience init?(frameworkImage name: String) {
self.init(named: name, in: LocalBundle.main, with: nil)
}
}