BGReadTextView.m 638 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // BGReadTextView.m
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2021/12/25.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BGReadTextView.h"
  9. @implementation BGReadTextView
  10. - (instancetype)init
  11. {
  12. self = [super init];
  13. if (self) {
  14. }
  15. return self;
  16. }
  17. +( BGReadTextView *)instanceView{
  18. return [[[ NSBundle mainBundle ] loadNibNamed : @"BGReadTextView" owner : self options : nil ] lastObject ];
  19. }
  20. /*
  21. // Only override drawRect: if you perform custom drawing.
  22. // An empty implementation adversely affects performance during animation.
  23. - (void)drawRect:(CGRect)rect {
  24. // Drawing code
  25. }
  26. */
  27. @end