0

私のプロジェクトでは、ナビゲーション コントローラーを使用して別のプロジェクトに移動しましたが、カスタム ナビゲーション コントローラーがあるビューがいくつかあります。

どうすればいいですか?

私はこのようにしてみましたが、クラッシュが発生しています。

[self.navigationController presentModalViewController:myVechileView animated:YES];

[self presentModalViewController:myVechileView animated:YES];
4

3 に答える 3

0

iOS 6を使用している場合は、これを使用してください..

[self.navigationController presentViewController:myVechileView animated:YES completion:nil];'

あなたがiOS 5を台無しにしているなら、

[self.navigationController presentModalViewController:myVechileView animated:YES];

これがあなたを助けることを願っています

于 2013-03-18T05:14:08.513 に答える
0
[self.navigationController presentViewController:myVechileView animated:YES completion:nil];
于 2013-03-18T04:55:22.167 に答える
0

presentModalViewController:animated: UIViewではなくUIViewControllerを取ります

于 2013-03-18T04:58:16.640 に答える