JGMethodSwizzler
JGMethodSwizzler copied to clipboard
Powerful and easy to use Objective-C swizzling API.
The version of clang in the latest SDK throws a warning when it sees a mismatch between a `@param` and the parameter name in the method declaration.
Added tvOS support in podspec
Right now, when swizzling an individual instance of object, this class requires the object already implement that method. Is there a way that this library can be modified to be...
Hi, I'm trying to swizzle AVAudioSession's - (BOOL)setCategory:(NSString _)category withOptions: (AVAudioSessionCategoryOptions)options error:(NSError *_)outError method. Problem is that each time someone try to set category I get EXC_BAD_ACCESS. I assume problem...
Can you retag 2.0.1 to a commit after you added the LICENSE.txt file? Currently when you install JGMethodSwizzler with CocoaPods you get an 'Unable to read the license file' warning...
I am unable to swizzle scrollViewWillEndDragging:withVelocity:targetContentOffset: of the UIScrollviewDelegate as the last parameter targetContentOffset is an inout parameter and blocks do not take inout parameter. Because of this the signature...
Description: - Swizzling an instance method on an instance twice (or at least more than once) causes the swizzling to be applied to all instances of the instance/object class. Expected...