I have an iPhone project with a NIB that only has a table view (UITableViewController). My delegate loads the nib (and associated controller) and all is well. Now I'd like to have UILabel show up when there is no data to show in the table view. Revisiting the NIB it occurred to me that only the File's Owner, Delegate, and the Table View are present (i.e. no Window).
It seems like I've seen this before in apps when say you search for something and there are no results. What is the best practices approach to adding the UI label or any other UI element for that matter.
Thanks!