1234567891011121314151617181920212223242526 |
- //
- // UITextView+MT.m
- // SeafoodAccount
- //
- // Created by Simon on 2019/8/20.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "UITextView+MT.h"
- #import <objc/runtime.h>
- @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
|