21 lines
370 B
Objective-C
Executable File
21 lines
370 B
Objective-C
Executable File
//
|
|
// UIViewController+BMNavigationView.h
|
|
// buymore
|
|
//
|
|
// Created by yuebin on 2020/8/31.
|
|
// Copyright © 2020 JLC. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "CustomNavigationView.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface UIViewController (BMNavigationView)
|
|
|
|
@property (strong, nonatomic) CustomNavigationView *bm_navView;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|