BMKGeneralDelegate.h 469 B

123456789101112131415161718192021222324
  1. //
  2. // BMKGeneralDelegate.h
  3. // BMapKit
  4. //
  5. // Copyright 2011 Baidu Inc. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. ///通知Delegate
  9. @protocol BMKGeneralDelegate <NSObject>
  10. @optional
  11. /**
  12. *返回网络错误
  13. *@param iError 错误号
  14. */
  15. - (void)onGetNetworkState:(int)iError;
  16. /**
  17. *返回授权验证错误
  18. *@param iError 错误号 : 为0时验证通过,具体参加BMKPermissionCheckResultCode
  19. */
  20. - (void)onGetPermissionState:(int)iError;
  21. @end