You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

35 lines
689 B

//
// RankingListTableViewCell.h
// tongxin
//
// Created by WeiChaoZheng on 2018/8/24.
// Copyright © 2018年 xTT. All rights reserved.
//
#import <UIKit/UIKit.h>
@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