Was wondering how to properly display a notification or text when there are no rows / cells found on my UICollectionViewController
and UITableViewController
. At this time I would only show a UIAlertView
, is there a better way to approach this?
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Warning!"
message:@"No rows found"
delegate:self
cancelButtonTitle:@"Logout"];
[alert show];