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.
26 lines
534 B
26 lines
534 B
![]()
2 years ago
|
//
|
||
|
// TrackTableViewCell.h
|
||
|
// LekangGuard
|
||
|
//
|
||
|
// Created by ecell on 2022/12/14.
|
||
|
//
|
||
|
|
||
|
#import "ZZTableViewCell.h"
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface TrackTableViewCell : ZZTableViewCell
|
||
|
|
||
|
/*设置类型和时间和地址
|
||
|
|
||
|
@param type 0 起点 1 平常点 2 终点
|
||
|
@param address 地址
|
||
|
@param timeStr 时间
|
||
|
@param canShape 是否绘制虚线
|
||
|
*/
|
||
|
- (void)setIconType:(NSInteger)type WithAddress:(NSString *)address WithTime:(NSString*)timeStr CanShapeToView:(BOOL)canShape StayTime:(NSString *)stayTime;
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|