ISSDKAuthView.h 468 B

123456789101112131415161718192021222324252627
  1. //
  2. // ISSDKAuthView.h
  3. // ShareSDK
  4. //
  5. // Created by fenghj on 15/12/2.
  6. // Copyright © 2015年 掌淘科技. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "SSDKTypeDefine.h"
  10. @protocol ISSDKAuthView <NSObject>
  11. /**
  12. * 取消授权
  13. */
  14. - (void)cancel;
  15. /**
  16. * 授权状态变更时触发
  17. *
  18. * @param stateChangedHandler 授权状态变更处理器
  19. */
  20. - (void)onAuthStateChanged:(SSDKAuthorizeStateChangedHandler)stateChangedHandler;
  21. @end