宽窄优行-由【嘉易行】项目成品而来
younger_times
2023-07-05 0d8f5fc8a516bfd07e425909e4a4432600572ee7
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
//
//  FOREmptyAssistantConfiger.h
//  51offer
//
//  Created by XcodeYang on 12/10/15.
//  Copyright © 2015 51offer. All rights reserved.
//
 
#import <UIKit/UIKit.h>
 
typedef BOOL(^ShouldDisplay)();
 
@interface FOREmptyAssistantConfiger : NSObject
 
@property (nonatomic, strong)   UIImage *emptyImage;
 
// default @""
@property (nonatomic, copy)     NSString *emptyTitle;
// default systemFontOfSize:17.0f
@property (nonatomic, strong)   UIFont *emptyTitleFont;
// default darkGrayColor
@property (nonatomic, strong)   UIColor *emptyTitleColor;
 
 
// default @""
@property (nonatomic, copy)     NSString *emptySubtitle;
// default systemFontOfSize:15.0f
@property (nonatomic, strong)   UIFont *emptySubtitleFont;
// default lightGrayColor
@property (nonatomic, strong)   UIColor *emptySubtitleColor;
 
// default systemFontOfSize:17.0f
@property (nonatomic, strong)   UIFont *emptyBtntitleFont;
// default whiteColor
@property (nonatomic, strong)   UIColor *emptyBtntitleColor;
// default "blank_button"
@property (nonatomic, strong)   UIImage *emptyBtnImage;
 
 
// default CGPointZero
//空白页整体位置默认是在tableView居中显示
@property (nonatomic)   CGPoint emptyCenterOffset;
 
// default (x:0, y:-30)
//空白页的图片、按钮、文案之间的间距大小
@property (nonatomic)   CGFloat emptySpaceHeight;
 
// default YES
//添加空白页后ScrollView是否可以继续拖拽
@property (nonatomic)   BOOL allowScroll;
 
// default YES
//添加空白页后ScrollView是否可以展示
@property (nonatomic)   ShouldDisplay shouldDisplay;
 
@end