私にはUIView->UICollectionView->UICollectionViewCell
があります。私はプログラム的に戻ることを試みていますが、これらの作品はありません。コードが呼び出されました。 私はStoryBoardを使用しています。ナビゲート前のビューコントローラーに戻る
- (void) goBack:(NSNotification *) notification {
// [self.navigationController popViewControllerAnimated:YES];
// [self dismissViewControllerAnimated:YES completion:nil];
[self.navigationController popToRootViewControllerAnimated:YES];
}
あなたのボタンのアクションコードまたは通知コードを表示しますか? – Balu
self.navigationControlleがあなたのクラスでnilではないようになっていますか?これをチェックして。 –
[[NSNotificationCenter defaultCenter] postNotificationName:@ "goBack"オブジェクト:なし]; – user1688346