Skip to content

Commit 5b74910

Browse files
committed
rename class name to SecretSwitch and enhance blur.
1 parent 3390d51 commit 5b74910

File tree

20 files changed

+142
-89
lines changed

20 files changed

+142
-89
lines changed

SecretSwitch/SecretSwitch.xcodeproj/project.pbxproj renamed to Example/SecretSwitch.xcodeproj/project.pbxproj

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
27A0EE411889A49800F0BFF7 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 27A0EE201889A49800F0BFF7 /* UIKit.framework */; };
2323
27A0EE491889A49800F0BFF7 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 27A0EE471889A49800F0BFF7 /* InfoPlist.strings */; };
2424
27A0EE4B1889A49800F0BFF7 /* SecretSwitchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A0EE4A1889A49800F0BFF7 /* SecretSwitchTests.m */; };
25-
27CEEF2C188FBBDE00ED70EF /* SerectSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 27CEEF2B188FBBDE00ED70EF /* SerectSwitch.m */; };
25+
A08DE8C61907C1CB007D7E3F /* SecretSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = A08DE8C51907C1CB007D7E3F /* SecretSwitch.m */; };
2626
/* End PBXBuildFile section */
2727

2828
/* Begin PBXContainerItemProxy section */
@@ -56,8 +56,8 @@
5656
27A0EE461889A49800F0BFF7 /* SecretSwitchTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "SecretSwitchTests-Info.plist"; sourceTree = "<group>"; };
5757
27A0EE481889A49800F0BFF7 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5858
27A0EE4A1889A49800F0BFF7 /* SecretSwitchTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SecretSwitchTests.m; sourceTree = "<group>"; };
59-
27CEEF2A188FBBDE00ED70EF /* SerectSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerectSwitch.h; sourceTree = "<group>"; };
60-
27CEEF2B188FBBDE00ED70EF /* SerectSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SerectSwitch.m; sourceTree = "<group>"; };
59+
A08DE8C41907C1CB007D7E3F /* SecretSwitch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SecretSwitch.h; sourceTree = "<group>"; };
60+
A08DE8C51907C1CB007D7E3F /* SecretSwitch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SecretSwitch.m; sourceTree = "<group>"; };
6161
/* End PBXFileReference section */
6262

6363
/* Begin PBXFrameworksBuildPhase section */
@@ -117,7 +117,7 @@
117117
27A0EE221889A49800F0BFF7 /* SecretSwitch */ = {
118118
isa = PBXGroup;
119119
children = (
120-
27CEEF29188FBBCD00ED70EF /* Class */,
120+
A08DE8C31907C1CB007D7E3F /* SecretSwitch */,
121121
27A0EE2B1889A49800F0BFF7 /* AppDelegate.h */,
122122
27A0EE2C1889A49800F0BFF7 /* AppDelegate.m */,
123123
27A0EE2E1889A49800F0BFF7 /* Main_iPhone.storyboard */,
@@ -159,13 +159,14 @@
159159
name = "Supporting Files";
160160
sourceTree = "<group>";
161161
};
162-
27CEEF29188FBBCD00ED70EF /* Class */ = {
162+
A08DE8C31907C1CB007D7E3F /* SecretSwitch */ = {
163163
isa = PBXGroup;
164164
children = (
165-
27CEEF2A188FBBDE00ED70EF /* SerectSwitch.h */,
166-
27CEEF2B188FBBDE00ED70EF /* SerectSwitch.m */,
165+
A08DE8C41907C1CB007D7E3F /* SecretSwitch.h */,
166+
A08DE8C51907C1CB007D7E3F /* SecretSwitch.m */,
167167
);
168-
path = Class;
168+
name = SecretSwitch;
169+
path = ../../SecretSwitch;
169170
sourceTree = "<group>";
170171
};
171172
/* End PBXGroup section */
@@ -267,7 +268,7 @@
267268
buildActionMask = 2147483647;
268269
files = (
269270
27A0EE361889A49800F0BFF7 /* ViewController.m in Sources */,
270-
27CEEF2C188FBBDE00ED70EF /* SerectSwitch.m in Sources */,
271+
A08DE8C61907C1CB007D7E3F /* SecretSwitch.m in Sources */,
271272
27A0EE2D1889A49800F0BFF7 /* AppDelegate.m in Sources */,
272273
27A0EE291889A49800F0BFF7 /* main.m in Sources */,
273274
);

SecretSwitch/SecretSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata renamed to Example/SecretSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata

File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
//
88

99
#import "AppDelegate.h"
10-
#import "SerectSwitch.h"
10+
#import "SecretSwitch.h"
1111

1212
@implementation AppDelegate
1313

1414
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
1515
{
1616
// Override point for customization after application launch.
17-
[SerectSwitch protectSecret];
17+
[SecretSwitch protectSecret];
1818
return YES;
1919
}
2020

SecretSwitch/SecretSwitch/Base.lproj/Main_iPad.storyboard renamed to Example/SecretSwitch/Base.lproj/Main_iPad.storyboard

File renamed without changes.

SecretSwitch/SecretSwitch/Base.lproj/Main_iPhone.storyboard renamed to Example/SecretSwitch/Base.lproj/Main_iPhone.storyboard

File renamed without changes.

SecretSwitch/SecretSwitch/Images.xcassets/AppIcon.appiconset/Contents.json renamed to Example/SecretSwitch/Images.xcassets/AppIcon.appiconset/Contents.json

File renamed without changes.

SecretSwitch/SecretSwitch/Images.xcassets/LaunchImage.launchimage/Contents.json renamed to Example/SecretSwitch/Images.xcassets/LaunchImage.launchimage/Contents.json

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)