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.
42 lines
976 B
42 lines
976 B
// |
|
// NewTrackMsgCell.h |
|
// tongxin |
|
// |
|
// Created by weichao on 2019/8/23. |
|
// Copyright © 2019 xTT. All rights reserved. |
|
// |
|
|
|
#import "TableCell.h" |
|
|
|
NS_ASSUME_NONNULL_BEGIN |
|
|
|
@interface NewTrackMsgCell : baseCell |
|
|
|
/** |
|
时间 |
|
*/ |
|
@property (weak, nonatomic) IBOutlet UILabel *timeLabel; |
|
/** |
|
虚线View |
|
*/ |
|
@property (weak, nonatomic) IBOutlet UIView *dottedLineView; |
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *iconView; |
|
@property (weak, nonatomic) IBOutlet UILabel *addressLabel; |
|
@property (weak, nonatomic) IBOutlet UILabel *stayLabel; |
|
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *stayLabelWidth; |
|
|
|
/** |
|
设置类型和时间和地址 |
|
|
|
@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
|
|
|