TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Nov 2015 |
Maintained by Michael Gorbach, Nick Donaldson, Eric Slosser.
RZDebugMenu
gives you an easy way to add tweakable, debug-only preferences or settings to your application. This is useful for many settings you often want to change during development, but never in production, such as whether you are using a staging
or production
API endpoint.
RZDebugMenu
is configured via Settings Bundle plist file, just like the ones you create for adding your (release build) settings to Settings.app. It supports almost all the Settings Bundle schema defined here.
Once you configure it at the start of your application, RZDebugMenu
shows your menu automatically on a two-finger, three-tap gesture.
RZDebugMenu
is driven off of a Settings bundle plist file, so the first thing you should is create this Plist and add it to your project.
To set up RZDebugMenu, add the following code to your Applcation Delegate's application:didFinishLaunchingWithOptions:
method.
#if (DEBUG)
// To activate the debug menu, call this method with the name of the settings plist you want to use. It should be included in your application bundle.
[RZDebugMenu enableMenuWithSettingsPlistName:@"debug_settings"];
#endif
Once you have your window, to set up the two-finger, three-tap gesture to show the menu, add the following code:
#if (DEBUG)
// 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] registerDebugMenuPresentationGestureOnView:self.window];
#endif
You can now access your debug settings via RZDebugMenuSettings
.
[RZDebugMenuSettings sharedSettings][@"my_setting_key"]
You can also use standard KVO on RZDebugMenuSettings
to access settings, and to watch for changes.
NSNumber *namePreference = [[RZDebugMenuSettings sharedSettings] valueForKey:@"name_preference"];
[[RZDebugMenuSettings sharedSettings] addObserver:self forKeyPath:@"name_preference" options:NSKeyValueObservingOptionInitial | NSKeyValueObservingOptionNew context:NULL];
Finally, you can detect changes in settings via an NSNotification
, if you prefer that over KVO.
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(settingsChanged:) name:kRZDebugMenuSettingChangedNotification object:nil];
This notification will contain keys that describe the setting that has been changed, as well as the previous and new values.
Check the sample application for some patterns of advanced usage. Including:
NSUserDefaults.
)To try RZDebugMenu
, install CocoaPods and run
pod try RZDebugMenu
RZDebugMenu
is available through CocoaPods. To install, simply add the following line to your Podfile
:
pod RZDebugMenu
Current Maintainer:
Previous Maintainers: