TencentNavKit
TNKLaneInfo.h
Go to the documentation of this file.
1//
2// TNKLaneInfo.h
3// TencentNavKit
4//
5// Created by mol on 2022/11/17.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <UIKit/UIKit.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
15@interface TNKLaneInfo : NSObject
16
17- (instancetype)initWithImage:(UIImage *)image numOfLane:(int)numOfLane;
18
20@property (nonatomic, readonly) UIImage *image;
21
23@property (nonatomic, readonly) int numOfLane;
24
25@end
26
27NS_ASSUME_NONNULL_END
车道线信息
Definition: TNKLaneInfo.h:16
int numOfLane
车道线个数
Definition: TNKLaneInfo.h:23
UIImage * image
车道线图片
Definition: TNKLaneInfo.h:20