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