You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have tried to implement the autocompleteview in my swift project by using bridge headers. But i am not able to figure out how to implement the _autocompleteView.didAutocompleteWith property as in objective c the above property uses
_autocompleteView.didAutocompleteWith = ^(id item)
{
NSLog(@"Autocompleted with: %@", item.completionText);
};
not able to figure out how to implement above property in swift.
The text was updated successfully, but these errors were encountered:
I have tried to implement the autocompleteview in my swift project by using bridge headers. But i am not able to figure out how to implement the _autocompleteView.didAutocompleteWith property as in objective c the above property uses
_autocompleteView.didAutocompleteWith = ^(id item)
{
NSLog(@"Autocompleted with: %@", item.completionText);
};
not able to figure out how to implement above property in swift.
The text was updated successfully, but these errors were encountered: