HXSearchBar.h 522 B

12345678910111213
  1. #import <UIKit/UIKit.h>
  2. @interface HXSearchBar : UISearchBar
  3. @property (nonatomic,strong) UIColor *cursorColor;//光标颜色
  4. @property (nonatomic,strong) UITextField *searchBarTextField;//搜索框TextField
  5. @property (nonatomic,strong) UIImage *clearButtonImage;//输入框清除按钮图片
  6. @property (nonatomic,assign) BOOL hideSearchBarBackgroundImage;//隐藏SearchBar背景灰色部分 默认显示
  7. @property (nonatomic,strong) UIButton *cancleButton;//取消按钮 showsCancelButton = YES 才能获取到
  8. @end