DSNaviBarViewController.h 823 字节
//
//  DSNaviBarViewController.h
//  DreamSleep
//
//  Created by peter on 2022/5/19.
//

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

/*
 自定义导航栏基类
 
 我的积分页面
 每日任务页面
 */
@interface DSNaviBarViewController : UIViewController
/// 自定义导航栏
@property (nonatomic, strong) UIView *dsNaviBar;
/// 导航栏title
@property (nonatomic, strong) UILabel *titleLab;
/// 返回按钮
@property (nonatomic, strong) UIButton *backBtn;
/// 导航栏标题
@property (nonatomic, copy) NSString *naviTitle;
/// 导航栏透明度
@property (nonatomic, assign) CGFloat naviBarAlpha;
/// 是否需要更新状态栏风格
@property (nonatomic, assign) BOOL isNeedUpdateStatusBarStyle;
/// 导航栏背景色
@property (nonatomic, strong) UIColor *naviBgColor;
@end

NS_ASSUME_NONNULL_END