Skip to content

Commit be33ae9

Browse files
committed
Initial commit
1 parent b8f3620 commit be33ae9

File tree

13 files changed

+937
-17
lines changed

13 files changed

+937
-17
lines changed

ProcessLoadingViewDemo.xcodeproj/project.pbxproj

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@
1212
FD135A0C2008F012006F1896 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FD135A0A2008F012006F1896 /* Main.storyboard */; };
1313
FD135A0E2008F012006F1896 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = FD135A0D2008F012006F1896 /* Assets.xcassets */; };
1414
FD135A112008F012006F1896 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = FD135A0F2008F012006F1896 /* LaunchScreen.storyboard */; };
15+
FD135A1D2008F02E006F1896 /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD135A192008F02E006F1896 /* Extensions.swift */; };
16+
FD135A1E2008F02E006F1896 /* ProcessLoadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD135A1A2008F02E006F1896 /* ProcessLoadingView.swift */; };
17+
FD135A1F2008F02E006F1896 /* ProcessOptions.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD135A1B2008F02E006F1896 /* ProcessOptions.swift */; };
18+
FD135A202008F02E006F1896 /* ProcessStroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD135A1C2008F02E006F1896 /* ProcessStroke.swift */; };
1519
/* End PBXBuildFile section */
1620

1721
/* Begin PBXFileReference section */
@@ -22,6 +26,10 @@
2226
FD135A0D2008F012006F1896 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
2327
FD135A102008F012006F1896 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
2428
FD135A122008F012006F1896 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
29+
FD135A192008F02E006F1896 /* Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = "<group>"; };
30+
FD135A1A2008F02E006F1896 /* ProcessLoadingView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProcessLoadingView.swift; sourceTree = "<group>"; };
31+
FD135A1B2008F02E006F1896 /* ProcessOptions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProcessOptions.swift; sourceTree = "<group>"; };
32+
FD135A1C2008F02E006F1896 /* ProcessStroke.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ProcessStroke.swift; sourceTree = "<group>"; };
2533
/* End PBXFileReference section */
2634

2735
/* Begin PBXFrameworksBuildPhase section */
@@ -54,6 +62,7 @@
5462
FD135A052008F012006F1896 /* ProcessLoadingViewDemo */ = {
5563
isa = PBXGroup;
5664
children = (
65+
FD135A182008F02E006F1896 /* processView */,
5766
FD135A062008F012006F1896 /* AppDelegate.swift */,
5867
FD135A082008F012006F1896 /* ViewController.swift */,
5968
FD135A0A2008F012006F1896 /* Main.storyboard */,
@@ -64,6 +73,17 @@
6473
path = ProcessLoadingViewDemo;
6574
sourceTree = "<group>";
6675
};
76+
FD135A182008F02E006F1896 /* processView */ = {
77+
isa = PBXGroup;
78+
children = (
79+
FD135A192008F02E006F1896 /* Extensions.swift */,
80+
FD135A1A2008F02E006F1896 /* ProcessLoadingView.swift */,
81+
FD135A1B2008F02E006F1896 /* ProcessOptions.swift */,
82+
FD135A1C2008F02E006F1896 /* ProcessStroke.swift */,
83+
);
84+
path = processView;
85+
sourceTree = "<group>";
86+
};
6787
/* End PBXGroup section */
6888

6989
/* Begin PBXNativeTarget section */
@@ -137,7 +157,11 @@
137157
buildActionMask = 2147483647;
138158
files = (
139159
FD135A092008F012006F1896 /* ViewController.swift in Sources */,
160+
FD135A202008F02E006F1896 /* ProcessStroke.swift in Sources */,
161+
FD135A1D2008F02E006F1896 /* Extensions.swift in Sources */,
140162
FD135A072008F012006F1896 /* AppDelegate.swift in Sources */,
163+
FD135A1F2008F02E006F1896 /* ProcessOptions.swift in Sources */,
164+
FD135A1E2008F02E006F1896 /* ProcessLoadingView.swift in Sources */,
141165
);
142166
runOnlyForDeploymentPostprocessing = 0;
143167
};
@@ -276,6 +300,7 @@
276300
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
277301
CODE_SIGN_STYLE = Automatic;
278302
INFOPLIST_FILE = ProcessLoadingViewDemo/Info.plist;
303+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
279304
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
280305
PRODUCT_BUNDLE_IDENTIFIER = me.ProcessLoadingViewDemo;
281306
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -290,6 +315,7 @@
290315
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
291316
CODE_SIGN_STYLE = Automatic;
292317
INFOPLIST_FILE = ProcessLoadingViewDemo/Info.plist;
318+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
293319
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
294320
PRODUCT_BUNDLE_IDENTIFIER = me.ProcessLoadingViewDemo;
295321
PRODUCT_NAME = "$(TARGET_NAME)";

ProcessLoadingViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,11 @@
8484
"idiom" : "ipad",
8585
"size" : "83.5x83.5",
8686
"scale" : "2x"
87+
},
88+
{
89+
"idiom" : "ios-marketing",
90+
"size" : "1024x1024",
91+
"scale" : "1x"
8792
}
8893
],
8994
"info" : {
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "checkMark.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"version" : 1,
19+
"author" : "xcode"
20+
}
21+
}
727 Bytes
Loading
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "emptyCircle.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"scale" : "2x"
11+
},
12+
{
13+
"idiom" : "universal",
14+
"scale" : "3x"
15+
}
16+
],
17+
"info" : {
18+
"version" : 1,
19+
"author" : "xcode"
20+
}
21+
}
640 Bytes
Loading

0 commit comments

Comments
 (0)