TencentMapSDK_iOS_3D_v5.7.0
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 #import <UIKit/UIKit.h>
11 
15 @interface QShape : NSObject
16 
17 
21 @property (nonatomic, strong) id userData;
22 
23 @end
24 
25 
26 
30 @interface QAnimation : NSObject
31 
35 @property (nonatomic) float duration;
36 
37 @end
QShape
该类为一个抽象类,定义了QShape类的基本属性和行为,不能直接使用,必须子类化之后才能使用
Definition: QShape.h:16
QAnimation
动画配置
Definition: QShape.h:31
QShape::userData
id userData
供用户储存自定义数据,SDK本身不使用
Definition: QShape.h:21