-
Notifications
You must be signed in to change notification settings - Fork 0
/
Header.h
49 lines (40 loc) · 1.31 KB
/
Header.h
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
//
// Header.h
// FlatPrefs
//
// Created by gabriele filipponi on 22/03/2019.
//
#ifndef Header_h
#define Header_h
#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#define kCellIndentation 12.0
#define kCellRadius 12.0
#define kSectionDistance 12.0
typedef enum : NSUInteger {
shadowViewBehaviourTop,
shadowViewBehaviourCenter,
shadowViewBehaviourBottom,
shadowViewBehaviourLonly
} shadowViewBehaviour;
@interface PSTableCell : UITableViewCell
@property (nonatomic, strong) UIView *shadowMaskView;
@property (nonatomic, strong) UIView *shadowView;
@property (nonatomic, assign) shadowViewBehaviour behaviour;
@end
@interface PSListController : UIViewController
@property (nonatomic, strong) UIImage *shadowImage;
-(long long)rowsForGroup:(long long)arg1 ;
-(id)tableView:(id)arg1 titleForHeaderInSection:(long long)arg2 ;
-(id)tableView:(id)arg1 titleForFooterInSection:(long long)arg2 ;
-(id)tableView:(id)arg1 viewForHeaderInSection:(long long)arg2 ;
-(id)tableView:(id)arg1 viewForFooterInSection:(long long)arg2 ;
-(long long)numberOfSectionsInTableView:(id)arg1 ;
@end
@interface _UINavigationControllerManagedSearchPalette : UIView
-(void)_setShadowAlpha:(double)arg1;
@end
@interface UITableViewHeaderFooterView (FlatPrefs)
-(void)_setBackgroundViewColor:(id)arg1 ;
@end
#endif /* Header_h */