| 12345678910111213141516171819 |
- //
- // YOUPAILCCitySearchView.h
- // LiveChat
- //
- // Created by 张灿 on 2018/4/15.
- // Copyright © 2018年 caicai. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^citySearchBlock)(NSString *);
- typedef void(^endEditBlock)(void);
- @interface YOUPAILCCitySearchView : UIView
- @property(nonatomic,copy) citySearchBlock youpaipsearchBlock;
- @property(nonatomic,copy) endEditBlock youpaipendEditblock;;
- - (void)youpaifupdateWithString:(NSString*)string;
- @end
|