| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // UIViewController+Example.m
- // MJRefreshExample
- //
- // Created by MJ Lee on 15/3/12.
- // Copyright (c) 2015年 小码哥. All rights reserved.
- //
- #import "UIViewController+Example.h"
- #import <objc/runtime.h>
- @implementation UIViewController (Example)
- #pragma mark - swizzle
- + (void)load
- {
- Method method1 = class_getInstanceMethod([self class], NSSelectorFromString(@"dealloc"));
- Method method2 = class_getInstanceMethod([self class], @selector(deallocSwizzle));
- method_exchangeImplementations(method1, method2);
- }
- - (void)deallocSwizzle
- {
- NSLog(@"%@被销毁了", self);
-
- [self deallocSwizzle];
- }
- static char MethodKey;
- - (void)setMethod:(NSString *)method
- {
- objc_setAssociatedObject(self, &MethodKey, method, OBJC_ASSOCIATION_COPY_NONATOMIC);
- }
- - (NSString *)method
- {
- return objc_getAssociatedObject(self, &MethodKey);
- }
- @end
|