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.

43 lines
976 B

2 years ago
//
// 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