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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//
//  SSUIShareActionSheetStyle.h
//  ShareSDKUI
//
//  Created by 刘 靖煌 on 15/7/15.
//  Copyright (c) 2015年 mob. All rights reserved.
//
 
#import <UIKit/UIKit.h>
@class SSUIShareSheetConfiguration;
 
@interface SSUIShareActionSheetStyle : NSObject
 
/**
 *  ShareSDK UI风格
 */
typedef NS_ENUM(NSInteger, ShareActionSheetStyle)  {
    ShareActionSheetStyleSystem     = 0,    // 系统类型,默认
    ShareActionSheetStyleSimple     = 1,    // 简洁类型
};
 
/**
 *  设置ShareSDK UI风格
 */
+ (void)setShareActionSheetStyle:(ShareActionSheetStyle)style __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置分享菜单栏颜色
 *
 *  @param color 背景颜色
 */
+ (void)setActionSheetColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置分享菜单栏的背景颜色
 *
 *  @param color 背景颜色
 */
+ (void)setActionSheetBackgroundColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置标题文本颜色
 */
+ (void)setItemNameColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置标题文本字体
 */
+ (void)setItemNameFont:(UIFont *)font __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置取消按钮标签文本颜色
 *
 *  @param color 颜色
 */
+ (void)setCancelButtonLabelColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置取消按钮标签字体
 */
+ (void)setCancelButtonBackgroundColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置UIPageControl的Indicator的颜色
 */
+ (void)setPageIndicatorTintColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置UIPageControl当前页的Indicator的颜色
 */
+ (void)setCurrentPageIndicatorTintColor:(UIColor *)color __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置支持的页面方向(单独控制分享菜单栏)
 */
+ (void)setSupportedInterfaceOrientation:(UIInterfaceOrientationMask)toInterfaceOrientation __deprecated_msg("discard form v4.1.2");
 
/**
 *  设置分享菜单栏状态栏风格
 */
+ (void)setStatusBarStyle:(UIStatusBarStyle)statusBarStyle __deprecated_msg("discard form v4.1.2");
 
/**
 *  取消按钮是否隐藏,默认不隐藏
 */
+ (void)isCancelButtomHidden:(BOOL)isCancelButtomHidden __deprecated_msg("discard form v4.1.2");
 
/**
 * 默认配置
 */
+ (SSUIShareSheetConfiguration *)defaultSheetStyle;
 
@end