We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 911c45c commit ced4441Copy full SHA for ced4441
1 file changed
Sources/iOSIntPackage/DataProvider.swift
@@ -7,8 +7,12 @@
7
8
import UIKit
9
10
+// MARK: - DataProvider
11
+
12
public final class DataProvider {
13
14
+ // MARK: - Private properties
15
16
private let student: String
17
18
public init(student name: String) {
@@ -23,8 +27,14 @@ public final class DataProvider {
23
27
public func fetchImage() -> UIImage {
24
28
return UIImage(
25
29
named: "checkmark",
26
- in: Bundle(for: DataProvider.self),
30
+ in: Bundle.module,
31
compatibleWith: nil
32
)!
33
}
34
35
36
+// MARK: - Extension
37
38
+extension UIViewController {
39
40
+}
0 commit comments