MTSearchNavView.m 921 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // MTSearchNavView.m
  3. // Jianbinglian
  4. //
  5. // Created by Simon on 2021/2/24.
  6. // Copyright © 2021 Simon. All rights reserved.
  7. //
  8. #import "MTSearchNavView.h"
  9. @interface MTSearchNavView ()
  10. @property (weak, nonatomic) IBOutlet UITextField *searchTF;
  11. @property (weak, nonatomic) IBOutlet UIButton *cancelBtn;
  12. @end
  13. @implementation MTSearchNavView
  14. - (instancetype)initWithFrame:(CGRect)frame
  15. {
  16. self = [super initWithFrame:frame];
  17. self = [[[NSBundle mainBundle] loadNibNamed:@"MTSearchNavView" owner:self options:nil] lastObject];
  18. if (self) {
  19. self.frame = frame;
  20. [self setupViews];
  21. }
  22. return self;
  23. }
  24. -(void)setupViews{
  25. [[self.cancelBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
  26. self.searchTF.text = @"";
  27. }];
  28. }
  29. - (IBAction)backAction:(id)sender {
  30. [CURRENT_NAV popViewControllerAnimated:YES];
  31. }
  32. @end