23 lines
421 B
Objective-C
Executable File
23 lines
421 B
Objective-C
Executable File
//
|
|
// CustomNaviBarView.h
|
|
// DreamTown
|
|
//
|
|
// Created by 小收 on 2020/11/12.
|
|
// Copyright © 2020 小收. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface CustomNaviBarView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIButton *backBtn;
|
|
@property (weak, nonatomic) IBOutlet UILabel *titleLab;
|
|
|
|
@property (nonatomic, copy) void(^onBackBlock)(void);
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|