SearchBarDisplayCenter.h 635 B

1234567891011121314151617181920212223
  1. //
  2. // SearchBarDisplayCenter.h
  3. // KunShanETDZ
  4. //
  5. // Created by 云联智慧 on 2019/5/20.
  6. // Copyright © 2019 云联智慧. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol SearchBarDisplayCenterDelegate<NSObject>
  10. -(void)getSearchKeyWord:(NSString *)searchWord;
  11. @end
  12. @interface SearchBarDisplayCenter : UIView
  13. /** 搜索框提示语 */
  14. @property(nonatomic,copy)NSString *placeholderStr;
  15. /** placeholderColor */
  16. @property(nonatomic,copy)UIColor *placeholderColor;
  17. /** 搜索框输入文字颜色 */
  18. @property(nonatomic,copy)UIColor *searchColor;
  19. @property(nonatomic,weak)id<SearchBarDisplayCenterDelegate>delegate;
  20. @end