TencentNavKit
TNKGpsStatus.h
Go to the documentation of this file.
1//
2// TNKGpsStatus.h
3// TencentNavKit
4//
5// Created by mol on 2022/12/5.
6// Copyright © 2022 Tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
14{
18
20@interface TNKGpsStatus : NSObject
21
22// 状态类型
23@property (nonatomic, assign) TNKGpsStatusType statusType;
24
25// 信息
26@property (nonatomic, copy) NSString *message;
27
28@end
29
30NS_ASSUME_NONNULL_END
NS_ASSUME_NONNULL_BEGIN enum _TNKGpsStatusType TNKGpsStatusType
_TNKGpsStatusType
Definition: TNKGpsStatus.h:14
@ TNKGpsStatusTypeWeak
gps信号弱
Definition: TNKGpsStatus.h:15
@ TNKGpsStatusTypeStrong
gps信号强
Definition: TNKGpsStatus.h:16
gps状态信息
Definition: TNKGpsStatus.h:21
NSString * message
Definition: TNKGpsStatus.h:26
TNKGpsStatusType statusType
Definition: TNKGpsStatus.h:23