// // RankingMyListTableViewCell.h // tongxin // // Created by WeiChaoZheng on 2018/11/6. // Copyright © 2018年 xTT. All rights reserved. // #import @class Step; @interface RankingMyListTableViewCell : UITableViewCell /** 排名 */ @property (strong, nonatomic) IBOutlet UILabel *listIdentLabel; @property (strong, nonatomic) IBOutlet UIImageView *deviceImageView; /** 名字Label */ @property (strong, nonatomic) IBOutlet UILabel *nameLabel; /** 说明Label */ @property (strong, nonatomic) IBOutlet UILabel *detailLabel; /** 步数 */ @property (strong, nonatomic) IBOutlet UILabel *stepNumLabel; @property (strong, nonatomic) IBOutlet UIView *lineView; -(void)setMyDataWith:(Step*)step; -(void)setLineViewHidden:(BOOL)isHidden; @end