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.

61 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