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