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.
 
 
 
 

60 lines
913 B

//
// addressCell.h
// b
//
// Created by kaidan on 2017/1/12.
// Copyright © 2017年 kaidan. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "TableCell.h"
#import <CoreLocation/CoreLocation.h>
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