27 lines
672 B
Objective-C
Executable File
27 lines
672 B
Objective-C
Executable File
//
|
|
// YXYoungSetPwView.h
|
|
// romantic
|
|
//
|
|
// Created by MAC on 2022/12/15.
|
|
// Copyright © 2022 romantic. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "CRBoxInputView.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YXYoungSetPwView : UIView
|
|
|
|
@property (nonatomic,strong) CRBoxInputView *boxInputView;
|
|
@property (nonatomic,strong) CRBoxInputView *boxInputViewTwo;
|
|
|
|
@property (nonatomic,strong) UILabel *nameLabel;
|
|
@property (nonatomic,strong) UILabel *descLabel;
|
|
@property (nonatomic,strong) YYLabel *shensuLabel;
|
|
|
|
@property (nonatomic,assign) int type; //type == 1,标识需要开启青少年模式 ==2代表需要关闭青少年模式
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|