Auto suggest in UITextfield with comma separation
问题 The following code lets me auto suggest values typed into a UITextfield, by comparing it to an array of previously added string objects and show it in a UITableview. This works fine, but only for a single word. So now, can I modify the code in such a way, that after the user enters a comma, then starts typing again, I can search the same string array for suggestions again for the characters typed after the comma? - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange: