0

在我的项目中,我使用导航控制器移动到另一个,但我有一些视图,其中有我的自定义导航控制器。

请建议我该怎么做?

我试过这样做,但我正在发生崩溃。

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

[self presentModalViewController:myVechileView animated:YES];
4

3 回答 3

0
[self.navigationController presentViewController:myVechileView animated:YES completion:nil];
于 2013-03-18T04:55:22.167 回答
0

presentModalViewController:animated: 采用UIViewController而不是UIView

于 2013-03-18T04:58:16.640 回答
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 回答