iOS RunTime 을 이용한 디렉터 제거 확인

1377 단어
본고는 컨트롤러를 토대로 Category를 추가한 것으로 가져오고Category 헤더 파일을 인용하면 프로젝트에서 다른 코드를 인용하지 않아도 컨트롤러가 소각되었는지 검사할 수 있다.구체적인 코드는 다음과 같습니다.
UIViewController+Example.h

//
//  UIViewController+Example.h
//
//  Created by TL on 2017/4/6.
//  Copyright © 2017  TL. All rights reserved.
//

#import "UIViewController.h"

@interface RootViewController (Example)

@property (copy, nonatomic) NSString *method;

@end



UIViewController+Example.m

//
//  UIViewController+Example.m
//
//  Created by TL on 2017/4/6.
//  Copyright © 2017  TL. All rights reserved.
//

#import "UIViewController+Example.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);
}

static char MethodKey;
- (void)setMethod:(NSString *)method
{
    objc_setAssociatedObject(self, &MethodKey, method, OBJC_ASSOCIATION_COPY_NONATOMIC);
}

- (NSString *)method
{
    return objc_getAssociatedObject(self, &MethodKey);
}

@end



단번에 이룰 수 있는 천재는 없고, 천부적인 재능을 끊임없이 밝히는 근면한 사람만 있다

좋은 웹페이지 즐겨찾기