
I am using grouped tableview for developing a contact list using database. I have to show the message "No Contacts" on tableview when there is no contact in list. how can I do it?
Share your ideas..
Thanks in Advance
|
I am using grouped tableview for developing a contact list using database. I have to show the message "No Contacts" on tableview when there is no contact in list. how can I do it? Share your ideas.. Thanks in Advance |
||||
|
|
|
supposing that you are using an array to store all the contacts then use the following delegate
Now adding data to table in following delegate
|
|||||||||||
|
|
For cases like this one we used table headers. If the table had elements in his data source, the table header was clear and had a 1px height. If the data source had no elements, then the table header view was set as big as the table's frame and contained a message, an image or whatever you might need. The functions (table view delegate methods, actually) we used were height for header in section and view for header in section. We verified the data source inside the viewForHeader function You can achieve the same effect using the table footers as well |
|||
|
|
|
you can add UILabel ande set the text of the label
and you make a test
|
|||
|