BMKActionPaopaoView.h 465 B

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