UITextView+MT.m 691 B

1234567891011121314151617181920212223242526
  1. //
  2. // UITextView+MT.m
  3. // SeafoodAccount
  4. //
  5. // Created by Simon on 2019/8/20.
  6. // Copyright © 2019 Simon. All rights reserved.
  7. //
  8. #import "UITextView+MT.h"
  9. #import <objc/runtime.h>
  10. @implementation UITextView (MT)
  11. +(void)load{
  12. Method method1 = class_getInstanceMethod([self class], @selector(initWithCoder:));
  13. Method method2 = class_getInstanceMethod([self class], @selector(adapterInitWithCode:));
  14. method_exchangeImplementations(method1, method2);
  15. }
  16. -(instancetype)adapterInitWithCode:(NSCoder *)aDecoder{
  17. [self adapterInitWithCode:aDecoder];
  18. if (self) {
  19. self.font = [UIFont systemFontOfSize:kNumFrom375(self.font.pointSize)];
  20. }
  21. return self;
  22. }
  23. @end