TencentMapSDK_iOS_3D_v6.4.0
载入中...
搜索中...
未找到
QOfflineItem.h
1//
2// QOfflineItem.h
3// QMapKit
4//
5// Created by Keith Cao on 2020/4/20.
6// Copyright © 2020 tencent. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
16typedef NS_ENUM(NSInteger, QOfflineItemStatus)
17{
18 QOfflineItemStatusNone,
19 QOfflineItemStatusUpdated,
20 QOfflineItemStatusOutdated
21};
22
26@interface QOfflineItem : NSObject
27
29@property (nonatomic, copy, readonly) NSString *name;
30
32@property (nonatomic, copy, readonly) NSString *pinyin;
33
35@property (nonatomic, assign, readonly) long long size;
36
38@property (nonatomic, assign, readonly) QOfflineItemStatus status;
39
40@end
41
46
48@property (nonatomic, strong) NSArray <QOfflineItem *> *items;
49
50@end
51
56
57@end
58
59NS_ASSUME_NONNULL_END
离线文件类
定义 QOfflineItem.h:27
QOfflineItemStatus status
状态
定义 QOfflineItem.h:38
NSString * name
名字
定义 QOfflineItem.h:29
NSString * pinyin
拼音
定义 QOfflineItem.h:32
long long size
数据大小
定义 QOfflineItem.h:35
全国概要类
定义 QOfflineItem.h:56
省份类, 省份不支持下载
定义 QOfflineItem.h:46
NSArray< QOfflineItem * > * items
省份包含的离线文件
定义 QOfflineItem.h:48