BMKUtilsVersion.h 718 B

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // BMKUtilsVersion.h
  3. // UtilsComponent
  4. //
  5. // Created by wzy on 15/9/9.
  6. // Copyright © 2015年 baidu. All rights reserved.
  7. //
  8. #ifndef BMKUtilsVersion_h
  9. #define BMKUtilsVersion_h
  10. #import <UIKit/UIKit.h>
  11. /**
  12. *重要:
  13. *utils组件的版本和base组件的版本必须一致,否则不能正常使用
  14. */
  15. /**
  16. *获取当前地图API utils组件 的版本号
  17. *当前utils组件版本 : 3.2.1
  18. *return 返回当前API utils组件 的版本号
  19. */
  20. UIKIT_EXTERN NSString* BMKGetMapApiUtilsComponentVersion();
  21. /**
  22. *检查utils组件的版本号是否和base组件的版本号一致
  23. *return 版本号一致返回YES
  24. */
  25. UIKIT_EXTERN BOOL BMKCheckUtilsComponentIsLegal();
  26. #endif /* BMKUtilsVersion_h */