MGLiveWishListCell.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. //
  2. // MGLiveWishListCell.h
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2019/12/6.
  6. // Copyright © 2019 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "MGLiveWishModel.h"
  10. @class MGLiveWishcontributionView;
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface MGLiveWishListCell : UITableViewCell
  13. @property(nonatomic, strong) UIImageView *bgImgView;
  14. @property(nonatomic, strong) UILabel *titleL;
  15. @property(nonatomic, strong) UIImageView *iconImgView;
  16. @property(nonatomic, strong) UILabel *topicL;
  17. @property(nonatomic, strong) UIView *progressBgView;
  18. @property(nonatomic, strong) UIView *progressTitntView;
  19. @property(nonatomic, strong) UILabel *countL;
  20. @property(nonatomic, strong) UIView *line;
  21. @property(nonatomic, strong) UILabel *contributionL;
  22. @property(nonatomic, strong) UIView *contributionView;
  23. @property(nonatomic, assign) MGADD_WISH wishType;
  24. -(void)resetCellWithWishType:(MGADD_WISH)wishType WithModel:(MGLiveWishModel *)model;
  25. @end
  26. @interface MGLiveWishcontributionView : UIView
  27. @property(nonatomic, strong) UIImageView *headImgView;
  28. @property(nonatomic, strong) UIImageView *levelImgView;
  29. @property(nonatomic, strong) UILabel *nickNameL;
  30. @property(nonatomic, strong) UILabel *numL;
  31. @end
  32. NS_ASSUME_NONNULL_END