0

我的 View in 有一些问题Xcode。我有一个view电话"dettagliCampeggioVC",我从 2 个不同的角度来称呼它。

每次我调用它时,我都会使用以下代码:

[self presentViewController:dettagliCampeggioVC animated:YES completion:nil];

这是模拟器显示的:

http://imageshack.us/f/843/schermata032456378alle1.png/

这就是模拟器应该显示的内容:

http://imageshack.us/f/21/schermata032456378alle1.png/

谢谢你的帮助。

编辑:问题已解决 我只是忘记在 IB 上将 NibName 设置为“DettagliCampeggioVC”,

4

1 回答 1

0

@gabboSonc,可能是您尚未实例化 dettagliCampeggioVC 类。

使用如下:

ViewController *mvc=[self.storyboard instantiateViewControllerWithIdentifier:@"dettagliCampeggioVC"];
    [self presentViewController:mvc animated:YES completion:nil];

在您的故事板中为 dettagliCampeggioVC 类提供“dettagliCampeggioVC”作为 id。

于 2013-03-26T12:32:05.047 回答