Nessuna descrizione

AlibcTradeCommonSDK.h 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * AlibcTradeCommonSDK.h
  3. *
  4. * 阿里百川电商
  5. * 项目名称:阿里巴巴电商 AlibcTradeCommon
  6. * 版本号:3.1.1.200
  7. * 发布时间:2017-08-21
  8. * 开发团队:阿里巴巴百川商业化团队
  9. * 阿里巴巴电商SDK答疑群号:1488705339 2071154343(阿里旺旺)
  10. * Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
  11. */
  12. #import <Foundation/Foundation.h>
  13. #import "AlibcConfig.h"
  14. #ifndef AlibcTradeCommonSDK_h
  15. #define AlibcTradeCommonSDK_h
  16. @interface AlibcTradeCommonSDK : NSObject
  17. /**
  18. * 初始化函数,初始化成功后方可正常使用SDK中的功能
  19. *
  20. * @param onSuccess 初始化成功的回调
  21. * @param onFailure 初始化失败的回调
  22. */
  23. + (void)asyncInitWithSuccess:(void (^)())onSuccess
  24. failure:(void (^)(NSError *error))onFailure;
  25. @end
  26. @interface AlibcTradeCommonSDK (Settings)
  27. /**
  28. * 设置环境
  29. */
  30. + (void)setEnv:(AlibcEnvironment)env;
  31. /**
  32. * 获取当前环境对象
  33. */
  34. + (AlibcEnvironment)getEnv;
  35. /**
  36. 开启 Debug 模式日志
  37. */
  38. + (void)setDebugLogOpen:(BOOL)isDebugLogOpen;
  39. @end
  40. #endif