I'm searching for a way to add a UILabel to an UISearchBar in Front of the Searchfield.
I tried to add a UILabel like that:
- (void)searchDisplayControllerWillBeginSearch:(UISearchDisplayController *)controller
{
self.searchDisplayController.searchBar.showsCancelButton = YES;
UILabel *searchResultCount = [[UILabel alloc] initWithFrame:CGRectMake(8, 8, 50, 28)];
searchResultCount.text = @"357"; //Itemscount of Searchresult
[self.searchDisplayController.searchBar addSubview:searchResultCount];
}
The Result looks like that ==> https://i.stack.imgur.com/x3sel.png
How can i get this work ? It should be
[356] [Searchfield] [Cancel]
Thanks for any advise