| 123456789101112131415161718192021 |
- //
- // PlatformActivityCell.h
- // model
- //
- // Created by JuYi on 2018/7/17.
- // Copyright © 2018年 Mine. All rights reserved.
- // 平台活动cell
- #import <UIKit/UIKit.h>
- @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
|