tableView と push スタイル遷移を一緒に持つ 2 ページ VC を作成します。
前のページに戻ると、このページが再度リロードされ、データが再び受信されるカスタムの戻るボタン プッシュ スタイルのトランジションが必要です。
tableView と push スタイル遷移を一緒に持つ 2 ページ VC を作成します。
前のページに戻ると、このページが再度リロードされ、データが再び受信されるカスタムの戻るボタン プッシュ スタイルのトランジションが必要です。
カスタムトランジションが必要な場合は、次から始めることができます。
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationTransition:UIViewAnimationOptionTransitionFlipFromBottom forView:[[self navigationController] view] cache:YES];
[[self navigationController] popViewControllerAnimated:NO];
[UIView commitAnimations];
hidesBackButton
戻るボタンをset to に置き換えるカスタム ボタンをナビゲーション バーに作成しYES
、カスタム セグエを実行させることができます。