TencentMapSDK_iOS_3D_v4.3.4
QShape.h
1 //
2 // QShape.h
3 // QMapKit
4 //
5 // Created by tabsong on 17/5/18.
6 // Copyright © 2017年 tencent. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
14 @interface QShape : NSObject
15 
16 
20 @property (nonatomic, strong) id userData;
21 
22 @end
该类为一个抽象类,定义了QShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition: QShape.h:14
id userData
供用户储存自定义数据,SDK本身不使用
Definition: QShape.h:20