// // UITextView+MT.m // SeafoodAccount // // Created by Simon on 2019/8/20. // Copyright © 2019 Simon. All rights reserved. // #import "UITextView+MT.h" #import @implementation UITextView (MT) +(void)load{ Method method1 = class_getInstanceMethod([self class], @selector(initWithCoder:)); Method method2 = class_getInstanceMethod([self class], @selector(adapterInitWithCode:)); method_exchangeImplementations(method1, method2); } -(instancetype)adapterInitWithCode:(NSCoder *)aDecoder{ [self adapterInitWithCode:aDecoder]; if (self) { self.font = [UIFont systemFontOfSize:kNumFrom375(self.font.pointSize)]; } return self; } @end