iphone - iOS UI - how to tell user that there are no data in table view? -
this situation:
a user filters database selecting keywords list, presses "search". pushes instance of uitableviewcontroller subclass onto navigation stack.
in viewwillappear: method, data fetched core data , stored in ivar, ready table view's data source , delegate methods.
so far good.
the ui problem arises when there no results.
this simple architecture means empty result set yields empty table view no explanations.
it ui tell user "your search gave no results, please try fewer keywords".
my question this:
what best way provide relevant feedback user, without having change architecture much?
i thinking using table header, esteemed colleagues here think?
using table header not bad option. can go that. can try other options showing info in simple label or perhaps alert. wouldnt recommend alert.
Comments
Post a Comment