HWSearchBar.h 712 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // HWSearchBar.h
  3. // 双子星云手机
  4. //
  5. // Created by 余衡武 on 2022/3/9.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol HWSearchBarDelegate <NSObject>
  10. @optional
  11. - (void)searchBarWithText:(NSString *)text;
  12. - (void)searchBarChangeText:(NSString *)text;
  13. @end
  14. @interface HWSearchBar : UIView
  15. @property (weak, nonatomic) IBOutlet UIView *bgView;
  16. @property (weak, nonatomic) IBOutlet UITextField *textField;
  17. @property (weak, nonatomic) IBOutlet UIImageView *searchImageView;
  18. @property (weak, nonatomic) IBOutlet UILabel *searchPlaceHolder;
  19. @property (weak, nonatomic) id<HWSearchBarDelegate> delegate;
  20. + (instancetype)shareInstance;
  21. @end
  22. NS_ASSUME_NONNULL_END