BGReadTextView.h 450 B

123456789101112131415161718192021
  1. //
  2. // BGReadTextView.h
  3. // BuguLive
  4. //
  5. // Created by 志刚杨 on 2021/12/25.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BGReadTextView : UIView
  11. @property (weak, nonatomic) IBOutlet UITextField *textFiled;
  12. @property (weak, nonatomic) IBOutlet UILabel *labDes;
  13. @property (weak, nonatomic) IBOutlet UILabel *labName;
  14. +( BGReadTextView *)instanceView;
  15. @end
  16. NS_ASSUME_NONNULL_END