PlatformActivityCell.h 661 B

123456789101112131415161718192021
  1. //
  2. // PlatformActivityCell.h
  3. // model
  4. //
  5. // Created by JuYi on 2018/7/17.
  6. // Copyright © 2018年 Mine. All rights reserved.
  7. // 平台活动cell
  8. #import <UIKit/UIKit.h>
  9. @interface PlatformActivityCell : UITableViewCell
  10. @property (nonatomic, strong) UIImageView *iconImageView;
  11. @property (nonatomic, strong) UILabel *titleLabel;
  12. @property (nonatomic, strong) UILabel *subTitleLabel;
  13. @property (nonatomic, strong) UILabel *childTitleLabel;
  14. @property (nonatomic, strong) UIView *lineView;
  15. @property (nonatomic, strong) UIButton *statusBtn; //状态按钮
  16. - (void)setPlatformActivityCellValueWithDic:(NSDictionary *)dic titleStr:(NSString *)titleStr;
  17. @end