12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // MTSearchNavView.m
- // Jianbinglian
- //
- // Created by Simon on 2021/2/24.
- // Copyright © 2021 Simon. All rights reserved.
- //
- #import "MTSearchNavView.h"
- @interface MTSearchNavView ()
- @property (weak, nonatomic) IBOutlet UITextField *searchTF;
- @property (weak, nonatomic) IBOutlet UIButton *cancelBtn;
- @end
- @implementation MTSearchNavView
- - (instancetype)initWithFrame:(CGRect)frame
- {
- self = [super initWithFrame:frame];
- self = [[[NSBundle mainBundle] loadNibNamed:@"MTSearchNavView" owner:self options:nil] lastObject];
- if (self) {
- self.frame = frame;
- [self setupViews];
- }
- return self;
- }
- -(void)setupViews{
- [[self.cancelBtn rac_signalForControlEvents:UIControlEventTouchUpInside] subscribeNext:^(__kindof UIControl * _Nullable x) {
- self.searchTF.text = @"";
- }];
- }
- - (IBAction)backAction:(id)sender {
- [CURRENT_NAV popViewControllerAnimated:YES];
- }
- @end
|