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.
54 lines
1.0 KiB
54 lines
1.0 KiB
1 year ago
|
//
|
||
|
// TrackViewController.h
|
||
|
// watch
|
||
|
//
|
||
|
// Created by xTT on 2017/7/13.
|
||
|
// Copyright © 2017年 xTT. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "baseTabViewController.h"
|
||
|
#import "Track.h"
|
||
|
|
||
|
typedef void(^BlockCall)(void);
|
||
|
typedef void(^DelectBlockCall)(void);
|
||
|
@interface TrackViewController : baseTabViewController
|
||
|
|
||
|
/**
|
||
|
设备的头像
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UIImageView *deviceImageView;
|
||
|
|
||
|
/**
|
||
|
删除按钮
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UIButton *delectBtn;
|
||
|
|
||
|
/**
|
||
|
多少条轨迹的展示 Label
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UILabel *allCountTrackLabel;
|
||
|
|
||
|
/**
|
||
|
头部容器View
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet UIView *headCollectionView;
|
||
|
|
||
|
/**
|
||
|
tableView 的高度
|
||
|
*/
|
||
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightNSLC;
|
||
|
|
||
|
|
||
|
@property (weak, nonatomic) IBOutlet UILabel *nameLabel;
|
||
|
|
||
|
/**
|
||
|
选中的 日期的轨迹信息
|
||
|
*/
|
||
|
@property (strong, nonatomic) Track *infoTrack;
|
||
|
|
||
|
@property (copy, nonatomic) DelectBlockCall delectBlockCall;
|
||
|
|
||
|
- (void)loadWithInfoTrack:(Track*)track Back:(BlockCall)blockCall;
|
||
|
|
||
|
@end
|