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.
42 lines
776 B
42 lines
776 B
1 year ago
|
//
|
||
|
// RankingMyListTableViewCell.h
|
||
|
// tongxin
|
||
|
//
|
||
|
// Created by WeiChaoZheng on 2018/11/6.
|
||
|
// Copyright © 2018年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
@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
|