diff --git a/Demo/Podfile.lock b/Demo/Podfile.lock index da7d36b..26bbfdf 100644 --- a/Demo/Podfile.lock +++ b/Demo/Podfile.lock @@ -1,6 +1,6 @@ PODS: - FXForms (1.2.12) - - RZDebugMenu (0.1.0): + - RZDebugMenu (0.2.0): - FXForms (~> 1.2) DEPENDENCIES: @@ -12,6 +12,6 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: FXForms: ae90610432a0a9cbb71e0180f202d0fff375881f - RZDebugMenu: 117dda5d9327eafeef00d2cb48d33393a2f573cc + RZDebugMenu: e9ac336564dba9d0fbb51127a698df8e1e449b8d COCOAPODS: 0.35.0 diff --git a/Demo/RZDebugMenuDemo/Application/RZAppDelegate.m b/Demo/RZDebugMenuDemo/Application/RZAppDelegate.m index f9bec74..3313335 100644 --- a/Demo/RZDebugMenuDemo/Application/RZAppDelegate.m +++ b/Demo/RZDebugMenuDemo/Application/RZAppDelegate.m @@ -38,7 +38,7 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( // To configure automatic show and hide of the debug menu via a 4-tap gesture, call this method with your app's primary window. [[RZDebugMenu sharedDebugMenu] configureAutomaticShowHideOnWindow:self.window]; - // The debug menu button will be hidden by default. To show it, call the above method and then do theh 4-tap gesture, or you can enable it progarmmatically as follows. + // The debug menu button will be hidden by default. To show it, call the above method and then do the 4-tap gesture, or you can enable it programmatically as follows. [RZDebugMenu sharedDebugMenu].showDebugMenuButton = YES; // If you want your settings to be stored directly in user defaults, overwriting values used by your app via regular defaults APIs, you can uncomment the line below. diff --git a/Demo/RZDebugMenuDemo/View Controllers/RZDebugMenuRootViewController.m b/Demo/RZDebugMenuDemo/View Controllers/RZDebugMenuRootViewController.m index f78f4fa..1ddf659 100644 --- a/Demo/RZDebugMenuDemo/View Controllers/RZDebugMenuRootViewController.m +++ b/Demo/RZDebugMenuDemo/View Controllers/RZDebugMenuRootViewController.m @@ -51,7 +51,7 @@ - (void)viewDidLoad - (void)panGestureRecognizerFired:(id)sender { if ( self.presentedViewController == nil ) { - UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Whoah there ...." message:@"You swiped the backgroud view, didn't you?" preferredStyle:UIAlertControllerStyleAlert]; + UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"Woah there ...." message:@"You swiped the background view, didn't you?" preferredStyle:UIAlertControllerStyleAlert]; [alertController addAction:[UIAlertAction actionWithTitle:@"Yep" style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) { }]]; [self presentViewController:alertController animated:YES completion:nil];