Skip to content

Instantly share code, notes, and snippets.

@mhupman
Last active December 15, 2015 02:29
Show Gist options
  • Save mhupman/5187589 to your computer and use it in GitHub Desktop.
Save mhupman/5187589 to your computer and use it in GitHub Desktop.
Temporary, block-based method swizzling.
// privateBundleIdentifier is our custom implementation of bundleIdentifier in a NSBundle category
[NSBundle swizzle:@selector(bundleIdentifier) toMethod:@selector(privateBundleIdentifier) forBlock:^{
[Crashlytics startWithAPIKey:CRASHLYTICS_API_KEY];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment