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
//
//  SSUIEditorConfiguration.h
//  ShareSDKUI
//
//  Created by Max on 2018/4/10.
//  Copyright © 2018年 Max. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
@interface SSUIEditorConfiguration : NSObject
 
/**
 设置iPhone导航栏背景
 */
@property (strong, nonatomic) UIImage *iPhoneNavigationBarBackgroundImage;
 
/**
 设置iPhone导航栏颜色
 */
@property (strong, nonatomic) UIColor *iPhoneNavigationBarBackgroundColor;
 
/**
 设置iPad导航栏颜色
 */
@property (strong, nonatomic) UIColor *iPadNavigationBarBackgroundColor;
 
/**
 设置编辑界面背景颜色
 */
@property (strong, nonatomic) UIColor *editorViewBackgroundColor;
 
/**
 设置文本视图背景色
 */
@property (strong, nonatomic) UIColor *textViewBackgroundColor;
 
/**
 设置标题
 */
@property (nonatomic, copy) NSString *title;
 
/**
 标题颜色
 */
@property (strong, nonatomic) UIColor *titleColor;
 
/**
 取消按钮标签
 */
@property (copy, nonatomic) NSString *cancelButtonTitle;
 
/**
 取消按钮标题文本颜色
 */
@property (strong, nonatomic) UIColor *cancelButtonTitleColor;
 
/**
 取消按钮图片
 */
@property (strong, nonatomic) UIImage *cancelButtonImage;
 
/**
 分享按钮标签
 */
@property (copy, nonatomic) NSString *shareButtonTitle;
 
/**
 分享按钮标题文本颜色
 */
@property (strong, nonatomic) UIColor *shareButtonTitleColor;
 
/**
 分享按钮图片
 */
@property (strong, nonatomic) UIImage *shareButtonImage;
 
/**
 *  设置支持的页面方向(单独控制分享菜单栏)
 */
@property (assign, nonatomic) UIInterfaceOrientationMask interfaceOrientationMask;
 
/**
 *  设置分享菜单栏状态栏风格
 */
@property (assign, nonatomic) UIStatusBarStyle statusBarStyle;
 
@end