行/セルが見つからないときに、通知またはテキストを適切に表示する方法を知りたいUICollectionViewController
と思っていましたUITableViewController
。現時点では のみを表示しますUIAlertView
が、これにアプローチするより良い方法はありますか?
UIAlertView *alert = [[UIAlertView alloc]
initWithTitle:@"Warning!"
message:@"No rows found"
delegate:self
cancelButtonTitle:@"Logout"];
[alert show];