酷店

AlibcTradeBizSDK.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * AlibcTradeBizSDK.h
  3. *
  4. * 阿里百川电商
  5. * 项目名称:阿里巴巴电商 AlibcTradeBiz
  6. * 版本号:3.1.1.96
  7. * 发布时间:2017-03-24
  8. * 开发团队:阿里巴巴百川商业化团队
  9. * 阿里巴巴电商SDK答疑群号:1229144682(阿里旺旺)
  10. * Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
  11. */
  12. #import <Foundation/Foundation.h>
  13. #import <AlibcTradeCommon/AlibcTradeCommon.h>
  14. #ifndef AlibcTradeBizSDK_h
  15. #define AlibcTradeBizSDK_h
  16. #define AlibcTradeBizSDKVersion @"3.1.1.96"
  17. @interface AlibcTradeBizSDK : NSObject
  18. /**
  19. * 初始化函数,初始化成功后方可正常使用SDK中的功能
  20. *
  21. * @param onSuccess 初始化成功的回调
  22. * @param onFailure 初始化失败的回调
  23. */
  24. + (void)asyncInitWithSuccess:(void (^)())onSuccess
  25. failure:(void (^)(NSError *error))onFailure;
  26. @end
  27. @interface AlibcTradeBizSDK (Settings)
  28. /**
  29. * 设置环境
  30. */
  31. + (void)setEnv:(AlibcEnvironment)env;
  32. /**
  33. 开启/关闭 Debug 模式日志
  34. @param isDebugLogOpen 开启/关闭
  35. */
  36. + (void)setDebugLogOpen:(BOOL)isDebugLogOpen;
  37. /**
  38. 上层需要运行时获取 SDK Version 时,可以使用这个接口获取
  39. @return AlibcTradeBizSDKVersion
  40. */
  41. + (NSString *)getSDKVersion;
  42. @end
  43. #endif //AlibcTradeBizSDK_h