// // UIViewController+AppearLog.m // iCemarose // // Created by lee on 2017/5/18. // Copyright © 2017年 kollway. All rights reserved. // #import "UIViewController+AppearLog.h" #import <JRSwizzle/JRSwizzle.h> @implementation UIViewController (AppearLog)
#if DEBUG || 1
+ (void)load { [self jr_swizzleMethod:@selector(viewWillAppear:) withMethod:@selector(logViewWillAppear:) error:nil]; } - (void)logViewWillAppear:(BOOL) animated { NSLog(@"logViewWillAppear: %@",NSStringFromClass([self class])); [self logViewWillAppear:animated]; }
#endif
@end