viewController
テーブル項目をクリックするとすぐに新しいビューにプッシュされ、activityIndicator
新しいビューの読み込み中に表示されるアプリを見てきました。activityIndicator を に追加する方法は知ってProfileViewController
いますが、コンテンツが読み込まれるのを待つのではなく、アイテムをクリックするとすぐにテーブルを新しいコントローラーにプッシュするにはどうすればよいですか?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
*)indexPath
{
ProfileViewController *profileViewController = [[ProfileViewController alloc] initWithNibName:@"ProfileViewController" bundle:nil];
//profileViewController.title = [[news objectAtIndex:indexPath.row] objectForKey:@"name"];
profileViewController.newsArticle = [news objectAtIndex:indexPath.row];
[self.navigationController pushViewController:profileViewController animated:YES];
}
どんな援助や指導も素晴らしいでしょう。皆さん、ありがとうございました!