4

问题很简单。我需要和往常一样 - 如何用我的方法替换原始方法,但@selector(presentViewController:animated:completion:)在 iOS9 中?它仅适用于 iOS9 模拟器,不适用于真实设备。

是的,此代码被调用,但随后您得到EXC_BAD_ACCESS.

为了测试它,我从“Master-Detail 模板”创建了一个测试应用程序,添加了一个按钮并添加了以下代码:

UIViewController *vc = [[UIViewController alloc] init];
[self.navigationController presentViewController:vc animated:YES completion:nil];

更新

@implementation UINavigationController (Extension)

- (void)swizzledPresentViewController:(UIViewController *)viewControllerToPresent animated:(BOOL)flag completion:(void (^)(void))completion
{
    [ self swizzledPresentViewController:viewControllerToPresent animated:flag completion:completion ];
}

#pragma mark -

+ (void)swizzle:(Class)class oldSelector:(SEL)old newSelector:(SEL)new
{
    Method oldMethod = class_getInstanceMethod(class, old);
    Method newMethod = class_getInstanceMethod(class, new);


    if(class_addMethod(class, old, method_getImplementation(newMethod), method_getTypeEncoding(newMethod)))
    {
        class_replaceMethod(class, new, method_getImplementation(oldMethod), method_getTypeEncoding(oldMethod));
    }
    else
    {
        method_exchangeImplementations(oldMethod, newMethod);
    }
}

+ (void)load
{
    [self swizzle:UINavigationController.class oldSelector:@selector(presentViewController:animated:completion:) newSelector:@selector(swizzledPresentViewController:animated:completion:)];
}

@end

几乎相同的代码写在 NSHipster 网站上

更新

警告!这个错误在非常随机的设备上重现(在我的情况下是 iphone5 + ios9.0,但其他用户有更新的设备和 iOS9.1)。

4

1 回答 1

2

问题是 swizzling 中断检查nil值。这种情况的解决方案:

1)检查块是否nil然后用空的非零块替换它

2)使用现成的库。我试过了:https ://github.com/rabovik/RSSwizzle

于 2015-11-23T09:50:46.927 回答