YYSearchView.h 607 Bytes
//
//  YYSearchView.h
//  YYSearchView
//
//  Created by mac on 16/7/12.
//  Copyright © 2016年 Jack YY. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface YYSearchView : UIView<UITextFieldDelegate>

@property (strong,nonatomic)void (^YYGetTitle)(NSString * title);
@property (strong,nonatomic)void (^YYGetCancel)(void);
@property (weak, nonatomic) IBOutlet UIView *YYBgView;
@property (weak, nonatomic) IBOutlet UITextField *YYSearch;
@property (strong, nonatomic) IBOutlet UIButton *cancel;

/**
 *  创建视图
 *
 *  @return <#return value description#>
 */
+(instancetype)creatView;

@end