Blame view

Pods/mob_sharesdk/ShareSDK/ShareSDK.framework/Headers/SSDKSession.h 444 Bytes
75d24c15   yangbin   123
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  //
  //  SSDKSession.h
  //  ShareSDK
  //
  //  Created by Max on 2018/7/27.
  //  Copyright © 2018 掌淘科技. All rights reserved.
  //
  
  #import <Foundation/Foundation.h>
  
  @interface SSDKSession : NSObject
  
  /**
   会话是否被主动取消
   */
  @property (assign, nonatomic, readonly) BOOL isCancelled;
  
  /**
   session的目标平台
   */
  @property (assign, nonatomic) NSInteger platformType;
  
  /**
   主动取消此次会话
   */
  - (void) cancel;
  
  @end