developer
2023-05-20 e12c7b4c22df631ebdcd16b2f98fbef8f738f92f
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
29
30
31
32
33
//
//  SSDKAuthViewManager.h
//  ShareSDK
//
//  Created by Max on 2018/5/30.
//  Copyright © 2018年 掌淘科技. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
@interface SSDKAuthViewManager : NSObject
 
@property (strong, nonatomic) UIImage *navigationBarBackgroundImage;
@property (strong, nonatomic) UIColor *navigationBarBackgroundColor;
@property (copy, nonatomic) NSString *title;
@property (strong, nonatomic) UIColor *titleColor;
@property (copy, nonatomic) NSString *cancelButtonTitle;
@property (strong, nonatomic) UIColor *cancelButtonTitleColor;
@property (strong, nonatomic) UIImage *cancelButtonImage;
@property (assign, nonatomic) CGFloat cancelButtonLeftMargin;
@property (assign, nonatomic) CGFloat rightButtonRightMargin;
@property (assign, nonatomic) UIInterfaceOrientationMask toInterfaceOrientation;
@property (assign, nonatomic) UIStatusBarStyle statusBarStyle;
@property (strong, nonatomic) UIButton *rightButton;
@property (copy, nonatomic) NSString *shareTitle;
@property (assign, nonatomic) UIModalPresentationStyle style;
 
+ (instancetype)defaultManager;
 
- (void)showAuthViewWithPlatform:(SSDKPlatformType)platformType authUrl:(NSString *)url redirectUrl:(NSString *)redirectUrl callback:(NSString *)callback;
- (void)hiddenAuthWindowForViewController:(UIViewController *)viewController;
 
@end