我知道很多方法需要调用它的超类方法,而某些方法不需要,
我正在寻找关于方法混合的方法。它在load方法中初始化,在教程中没有[super load]
。
我想知道是否错了或者没有必要致电[super load]
。
+ (void)load {
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
Class class = [self class];
// When swizzling a class method, use the following:
// Class class = object_getClass((id)self);
SEL originalSelector = @selector(pushViewController:animated:);
SEL swizzledSelector = @selector(flbs_pushViewController:animated:);
Method originalMethod = class_getInstanceMethod(class, originalSelector);
Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);
BOOL didAddMethod =
class_addMethod(class,
originalSelector,
method_getImplementation(swizzledMethod),
method_getTypeEncoding(swizzledMethod));
if (didAddMethod) {
class_replaceMethod(class,
swizzledSelector,
method_getImplementation(originalMethod),
method_getTypeEncoding(originalMethod));
} else {
method_exchangeImplementations(originalMethod, swizzledMethod);
}
});
}
#pragma mark - Method Swizzling
- (void)flbs_pushViewController:(UIViewController *)viewController animated:(BOOL)animated {
dispatch_async(dispatch_get_main_queue(), ^{
[self flbs_pushViewController:viewController animated:animated];
});
NSLog(@"flbs_pushViewController");
}
顺便说一句,此方法用于修复导航损坏。
我偶尔会重新出现这个问题,并且我调试了它,我认为这是关于线程的。所以我在制度方法中添加某些东西。
如果你能告诉我某些导航损坏问题或者这种方法变质,我也非常感激。
答案 0 :(得分:8)
来自NSObject
documentation
(重点补充):
一个类的
+load
方法在所有超类的+load
方法之后被称为。
这意味着您无需从代码中调用[super load]
。
已经调用了所有超类中的load
方法
通过Objective-C运行时之前调用子类中的方法。