I have a UITableView
with items. A user can add an item by opening another UITableView
in which they find a UISearchBar
/UISearchDisplayController
with a big Glossary of items. If they can't find a word ("No Results") it should be able to add the text that was typed into the searchfield directly into the main UITableView
list.
The easiest way seems to change the name "Search" into "Add Item" and listen to searchBarSearchButtonClicked
. But without editing subviews etc. this is not possible.
Is there a workaround for it?