// // PlatformActivityCell.h // model // // Created by JuYi on 2018/7/17. // Copyright © 2018年 Mine. All rights reserved. // 平台活动cell #import @interface PlatformActivityCell : UITableViewCell @property (nonatomic, strong) UIImageView *iconImageView; @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) UILabel *subTitleLabel; @property (nonatomic, strong) UILabel *childTitleLabel; @property (nonatomic, strong) UIView *lineView; @property (nonatomic, strong) UIButton *statusBtn; //状态按钮 - (void)setPlatformActivityCellValueWithDic:(NSDictionary *)dic titleStr:(NSString *)titleStr; @end