// // addressCell.h // b // // Created by kaidan on 2017/1/12. // Copyright © 2017年 kaidan. All rights reserved. // #import #import "TableCell.h" #import typedef NS_ENUM(NSUInteger, HomeCellInfoType) { HomeCellInfoTypeDingWei, //定位 HomeCellInfoTypeJiBu, //计步 }; @interface HomeCellInfo : baseCell // cell 的高度为 80 @property(nonatomic,strong)UIView* backview; /* *标示图 */ @property(nonatomic,strong)UIImageView* iconImg; /* *当前标题 */ @property(nonatomic,strong)UILabel* titleLab; /* *当前数据 */ @property(nonatomic,strong)UILabel* datelab; /* *当前数据2 */ @property(nonatomic,strong)UILabel* datelabB; /* *当前时间 */ @property(nonatomic,strong)UILabel* timelab; /* *用户类型 */ @property(nonatomic,assign)HomeCellInfoType type; - (void)setLocation:(CLLocation *)location; @end