1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| /*
| * BMKArclineView.h
| * BMapKit
| *
| * Copyright 2011 Baidu Inc. All rights reserved.
| *
| */
|
| #import <UIKit/UIKit.h>
|
| #import "BMKArcline.h"
| #import "BMKOverlayGLBasicView.h"
|
| /// 此类用于定义一个圆弧View
| @interface BMKArclineView : BMKOverlayGLBasicView
|
| /**
| *根据指定的弧线生成一个圆弧View
| *@param arcline 指定的弧线数据对象
| *@return 新生成的弧线View
| */
| - (id)initWithArcline:(BMKArcline *)arcline;
|
| /// 该View对应的圆弧数据对象
| @property (nonatomic, readonly) BMKArcline *arcline;
|
| @end
|
|