ifish/Ifish/BMKMap3.3.0/BaiduMapAPI_Base.framework/Headers/BMKGeneralDelegate.h

25 lines
469 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// BMKGeneralDelegate.h
// BMapKit
//
// Copyright 2011 Baidu Inc. All rights reserved.
//
#import <Foundation/Foundation.h>
///通知Delegate
@protocol BMKGeneralDelegate <NSObject>
@optional
/**
*返回网络错误
*@param iError 错误号
*/
- (void)onGetNetworkState:(int)iError;
/**
*返回授权验证错误
*@param iError 错误号 : 为0时验证通过具体参加BMKPermissionCheckResultCode
*/
- (void)onGetPermissionState:(int)iError;
@end