I had a problem with names appearing as N(Null). I tracked it down to my datasource returning nil instead of @"". As this is easy to protect against, it would seem useful to do so:
Change line 234 in commitAutoCompleteText of HTAutocompleteTextField.m from
if ([self.autocompleteString isEqualToString:@""] == NO
to
if (self.autocompleteString.length > 0
as you do in refreshAutocompleteText
I had a problem with names appearing as N(Null). I tracked it down to my datasource returning nil instead of @"". As this is easy to protect against, it would seem useful to do so:
Change line 234 in
commitAutoCompleteTextofHTAutocompleteTextField.mfromif ([self.autocompleteString isEqualToString:@""] == NOto
if (self.autocompleteString.length > 0as you do in
refreshAutocompleteText