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

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

为了对其进行测试,我从“主从模板”创建了一个测试应用程序,添加了一个按钮并添加了以下代码:

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)。

最佳答案

问题是检查nil值时出现中断。此案例的解决方案:

1)检查块是否为nil,然后将其替换为空的非nil块

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

09-04 23:00