// // SearchBarDisplayCenter.h // KunShanETDZ // // Created by 云联智慧 on 2019/5/20. // Copyright © 2019 云联智慧. All rights reserved. // #import @protocol SearchBarDisplayCenterDelegate -(void)getSearchKeyWord:(NSString *)searchWord; @end @interface SearchBarDisplayCenter : UIView /** 搜索框提示语 */ @property(nonatomic,copy)NSString *placeholderStr; /** placeholderColor */ @property(nonatomic,copy)UIColor *placeholderColor; /** 搜索框输入文字颜色 */ @property(nonatomic,copy)UIColor *searchColor; @property(nonatomic,weak)iddelegate; @end