单军华
2018-05-04 7db6ba57b17fb7c0c364219750b14ee3d5cc351b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 *  BMKActionPaopaoView.h
 *  BMapKit
 *
 *  Copyright 2011 Baidu Inc. All rights reserved.
 *
 */
 
#import <UIKit/UIKit.h>
/// 该类用于定义一个PaopaoView
@interface BMKActionPaopaoView : UIView
 
/**
 *初始化并返回一个BMKActionPaopaoView
 *@param customView 自定义View,customView=nil时返回默认的PaopaoView
 *@return 初始化成功则返回BMKActionPaopaoView,否则返回nil
 */
- (id)initWithCustomView:(UIView*)customView;
 
@end