开发版本-developer——01 first commit

This commit is contained in:
wbzhan
2019-07-08 18:24:03 +08:00
parent 5a10dfa182
commit 8693efe121
386 changed files with 7069 additions and 1951 deletions
@@ -0,0 +1,32 @@
//
// ALBBSession.h
// AlibabaAuthSDK
//
// Created by Bangzhe Liu on 6/17/16.
// Copyright © 2016 taobao. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ALBBUser.h"
@interface ALBBSession : NSObject
@property(nonatomic, assign)BOOL isCanceledByUser;
@property(nonatomic, copy)NSString* bindCode;
/**
@return 返回单例
*/
+ (ALBBSession *)sharedInstance;
/**
如果未登录或者登录态已经过期,返回NO
@return 当前会话是否登录有效
*/
- (BOOL)isLogin;
/**
@return 返回User对象
*/
- (ALBBUser *)getUser;
@end