BGRoomSetNoticeCell.h 512 B

1234567891011121314151617181920212223
  1. //
  2. // BGRoomSetNoticeCell.h
  3. // UniversalApp
  4. //
  5. // Created by bugu on 2020/3/23.
  6. // Copyright © 2020 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface BGRoomSetNoticeCell : UITableViewCell
  11. @property(nonatomic, strong) UILabel *titleLabel;
  12. @property(nonatomic, strong) QMUITextView *titleTextView;
  13. //半透明背景
  14. @property(nonatomic, strong) UIImageView *bgImageView;
  15. @property(nonatomic, copy) void (^textChange)(NSString *text);
  16. @end
  17. NS_ASSUME_NONNULL_END