1234567891011121314151617181920212223 |
- //
- // SearchBarDisplayCenter.h
- // KunShanETDZ
- //
- // Created by 云联智慧 on 2019/5/20.
- // Copyright © 2019 云联智慧. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @protocol SearchBarDisplayCenterDelegate<NSObject>
- -(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)id<SearchBarDisplayCenterDelegate>delegate;
- @end
|