gliubc
6/14/2018 - 2:53 AM

textFieldShouldReturn

textFieldShouldReturn

@interface FindServiceVC () <UITextFieldDelegate>

self.textFieldSearch.delegate = self;

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    [textField resignFirstResponder];
    self.keyword = textField.text;
    [self reloadData];
    return NO;
}