Skip to content

Commit 1a079b0

Browse files
committed
Generate UIImage extension for accessing images from the code
1 parent cbf6d2d commit 1a079b0

15 files changed

+389
-158
lines changed

Example/Example.xcodeproj/project.pbxproj

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
0FEA094D250CB7DF0065EB81 /* LabelStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA094A250CB7DF0065EB81 /* LabelStyle.swift */; };
2121
0FEA094E250CB7DF0065EB81 /* UIFont+extension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA094B250CB7DF0065EB81 /* UIFont+extension.swift */; };
2222
0FEA094F250CB7DF0065EB81 /* Label.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA094C250CB7DF0065EB81 /* Label.swift */; };
23+
0FEA0953250CB9300065EB81 /* IconsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA0952250CB9300065EB81 /* IconsViewController.swift */; };
24+
0FEA0955250CC0D30065EB81 /* UIImage+extension_icons.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA0954250CC0D30065EB81 /* UIImage+extension_icons.swift */; };
25+
0FEA0957250CC1EA0065EB81 /* UIImage+extension_illustrations.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA0956250CC1EA0065EB81 /* UIImage+extension_illustrations.swift */; };
26+
0FEA0959250CC1F30065EB81 /* IllustrationsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEA0958250CC1F30065EB81 /* IllustrationsViewController.swift */; };
2327
/* End PBXBuildFile section */
2428

2529
/* Begin PBXFileReference section */
@@ -37,6 +41,10 @@
3741
0FEA094A250CB7DF0065EB81 /* LabelStyle.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LabelStyle.swift; sourceTree = "<group>"; };
3842
0FEA094B250CB7DF0065EB81 /* UIFont+extension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIFont+extension.swift"; sourceTree = "<group>"; };
3943
0FEA094C250CB7DF0065EB81 /* Label.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Label.swift; sourceTree = "<group>"; };
44+
0FEA0952250CB9300065EB81 /* IconsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IconsViewController.swift; sourceTree = "<group>"; };
45+
0FEA0954250CC0D30065EB81 /* UIImage+extension_icons.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+extension_icons.swift"; sourceTree = "<group>"; };
46+
0FEA0956250CC1EA0065EB81 /* UIImage+extension_illustrations.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIImage+extension_illustrations.swift"; sourceTree = "<group>"; };
47+
0FEA0958250CC1F30065EB81 /* IllustrationsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IllustrationsViewController.swift; sourceTree = "<group>"; };
4048
11966572636132EBFF5F81BB /* Pods-Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.debug.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.debug.xcconfig"; sourceTree = "<group>"; };
4149
C2FF91A431F7153FD4C7A3C3 /* Pods-Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Example.release.xcconfig"; path = "Target Support Files/Pods-Example/Pods-Example.release.xcconfig"; sourceTree = "<group>"; };
4250
EE92E0072EBEBC415D106D58 /* Pods_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -94,6 +102,10 @@
94102
0FEA094C250CB7DF0065EB81 /* Label.swift */,
95103
0FEA094A250CB7DF0065EB81 /* LabelStyle.swift */,
96104
0FEA094B250CB7DF0065EB81 /* UIFont+extension.swift */,
105+
0FEA0952250CB9300065EB81 /* IconsViewController.swift */,
106+
0FEA0958250CC1F30065EB81 /* IllustrationsViewController.swift */,
107+
0FEA0954250CC0D30065EB81 /* UIImage+extension_icons.swift */,
108+
0FEA0956250CC1EA0065EB81 /* UIImage+extension_illustrations.swift */,
97109
);
98110
path = Source;
99111
sourceTree = "<group>";
@@ -225,11 +237,15 @@
225237
isa = PBXSourcesBuildPhase;
226238
buildActionMask = 2147483647;
227239
files = (
240+
0FEA0955250CC0D30065EB81 /* UIImage+extension_icons.swift in Sources */,
228241
0F8F6C7225090F4900879906 /* AppDelegate.swift in Sources */,
229242
0F8F6C7525090F4900879906 /* SolidButton.swift in Sources */,
230243
0FEA094D250CB7DF0065EB81 /* LabelStyle.swift in Sources */,
244+
0FEA0959250CC1F30065EB81 /* IllustrationsViewController.swift in Sources */,
245+
0FEA0953250CB9300065EB81 /* IconsViewController.swift in Sources */,
231246
0FEA0949250CB7AE0065EB81 /* UIColor+extension.swift in Sources */,
232247
0FEA094E250CB7DF0065EB81 /* UIFont+extension.swift in Sources */,
248+
0FEA0957250CC1EA0065EB81 /* UIImage+extension_illustrations.swift in Sources */,
233249
0FEA094F250CB7DF0065EB81 /* Label.swift in Sources */,
234250
0F8F6C7425090F4900879906 /* SceneDelegate.swift in Sources */,
235251
);

0 commit comments

Comments
 (0)