Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Demo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PODS:
- FXForms (1.2.12)
- RZDebugMenu (0.1.0):
- RZDebugMenu (0.2.0):
- FXForms (~> 1.2)

DEPENDENCIES:
Expand All @@ -12,6 +12,6 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
FXForms: ae90610432a0a9cbb71e0180f202d0fff375881f
RZDebugMenu: 117dda5d9327eafeef00d2cb48d33393a2f573cc
RZDebugMenu: e9ac336564dba9d0fbb51127a698df8e1e449b8d

COCOAPODS: 0.35.0
2 changes: 1 addition & 1 deletion Demo/RZDebugMenuDemo/Application/RZAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down