forked from fyh333/MRMobileRun_iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathZYLSettingBackgound.h
More file actions
28 lines (26 loc) · 961 Bytes
/
ZYLSettingBackgound.h
File metadata and controls
28 lines (26 loc) · 961 Bytes
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
//
// ZYLSettingBackgound.h
// MRMobileRun
//
// Created by 丁磊 on 2019/11/11.
//
#import <UIKit/UIKit.h>
#import "ZYLSettingNomalCell.h"
#import "ZYLSettingIconCell.h"
#import "ZYLSettingNameCell.h"
#import "ZYLSettingDarkModeCell.h"
#import "ZYLNicknameTextField.h"
NS_ASSUME_NONNULL_BEGIN
@interface ZYLSettingBackgound : UIView
@property (nonatomic, strong) ZYLSettingDarkModeCell *switchCell;
@property (nonatomic, strong) ZYLSettingIconCell *iconCell;
@property (nonatomic, strong) ZYLSettingNameCell *nicknameCell;
@property (nonatomic, strong) ZYLSettingNomalCell *signCell;
@property (nonatomic, strong) ZYLSettingNomalCell *aboutCell;
@property (nonatomic, strong) ZYLSettingNomalCell *permissionCell;
@property (nonatomic, strong) ZYLSettingNomalCell *suggestionCell;
@property (nonatomic, strong) UIButton *logoutBtn;
//@property (nonatomic, strong) ZYLNicknameTextField *nicknameTextFiled;
-(void) YYZdarkChange;
@end
NS_ASSUME_NONNULL_END