//
|
// SearchNavView.h
|
// BuWanVideo2.0
|
//
|
// Created by Aeline on 2021/5/30.
|
// Copyright © 2021 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import "SearchDelegate.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
typedef void(^onCacel)(void);
|
|
@interface SearchNavView : UIView
|
|
@property (nonatomic, weak) id<SearchDelegate>delegate;
|
|
@property (nonatomic, nullable, copy) NSString *title;
|
|
@property (nonatomic, nullable, copy) NSString *text;
|
|
@property (nonatomic) onCacel onCacel;
|
@end
|
|
NS_ASSUME_NONNULL_END
|