Skip to content

Commit e63580b

Browse files
Fix syntax error with last commit
1 parent fa216df commit e63580b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Natives/UIKit+hook.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ void swizzleUIImageMethod(SEL originalAction, SEL swizzledAction) {
3131
void init_hookUIKitConstructor(void) {
3232
swizzle(UIDevice.class, @selector(userInterfaceIdiom), @selector(hook_userInterfaceIdiom));
3333
swizzle(UIImageView.class, @selector(setImage:), @selector(hook_setImage:));
34-
swizzle(UIPointerInteraction.class, @selector(_updateInteractionIsEnabled), @selector(hook__updateInteractionIsEnabled))
34+
swizzle(UIPointerInteraction.class, @selector(_updateInteractionIsEnabled), @selector(hook__updateInteractionIsEnabled));
3535

3636
// Add this line to swizzle the _imageWithSize: method
3737
swizzleUIImageMethod(NSSelectorFromString(@"_imageWithSize:"), @selector(hook_imageWithSize:));

0 commit comments

Comments
 (0)