UIView+XIB.h 612 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // UIView+XIB.h
  3. // HCQuanfangtong
  4. //
  5. // Created by qft_Ios_03 on 2018/5/18.
  6. // Copyright © 2018年 qft_Ios_03. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UIView (XIB)
  10. // 扩展是否折叠
  11. @property (nonatomic, assign) int isFold;
  12. // 更新的数据源
  13. @property (nonatomic, strong) id updateObj;
  14. @property (nonatomic,strong)NSString *saleType;
  15. // 切换
  16. @property (nonatomic, copy) void (^ChangeClick)(NSInteger tag);
  17. // 扩展回调
  18. @property (nonatomic, copy) void(^updateAudit)(NSString *remark,UIView *sender);
  19. + (instancetype)replyViewFirst;
  20. + (void)fixTextViewCrash;
  21. @end