SearchCommonBarView.h 943 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // CommonBarView.h
  3. // SeeTheDay
  4. //
  5. // Created by lww on 2022/6/25.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface SearchCommonBarView:UIView
  10. @property(nonatomic,strong)UIView *bgView;
  11. @property(nonatomic,strong)UIView *searchBgView;
  12. @property(nonatomic,strong)UIImageView *tipimageView;
  13. @property(nonatomic,strong)UILabel *tipLabel;
  14. @property(nonatomic,strong)UITextField *textField;
  15. @property(nonatomic,strong)UIButton *searchButton;
  16. //@property(nonatomic,strong)UIButton *rightButton;
  17. //@property(nonatomic,strong)UILabel *label;
  18. //@property(nonatomic,strong)UIImageView *imageView;
  19. //@property(nonatomic,strong)UIView *blineView;
  20. //@property(nonatomic,assign)int issel;
  21. //@property(nonatomic,strong)NSArray *dataArr;
  22. @property (nonatomic, copy) void(^searchAction)(NSString * tit);
  23. //-(void)changeSelAction:(NSInteger)tag;
  24. //@property (nonatomic, copy) void(^changeActionToFirst)(void);
  25. @end
  26. NS_ASSUME_NONNULL_END