0

我正在尝试使用以下代码从 viewcontrollerA 调用 viewcontrollerB:

ViewControllerB *vc = [[ViewControllerB alloc]initWithNibName:nil bundle:nil];
[self presentViewController:vc animated:YES completion:nil];

在 viewcontrollerB 我有以下代码:

SKView * skView = (SKView *)self.view;

skView.showsFPS = NO;
skView.showsNodeCount = NO;

// Create and configure the scene.
SKScene * scene = [MainScene sceneWithSize:skView.bounds.size];
//scene.scaleMode = SKSceneScaleModeAspectFit;

// Present the scene.
[skView presentScene:scene]; 

我收到错误:

[UIView setShowsFPS:]: 无法识别的选择器发送到实例

所以我已经阅读并实施了以下链接中写的解决方案:

简单的 Sprite Kit 场景设置出错

但我有同样的错误。

4

2 回答 2

1

当你这样做...

SKView * skView = (SKView *)self.view;

skView.showsFPS = NO;

...你告诉编译器你的观点是 aSKView但显然不是。错误消息说这是一个普通的UIView. 您需要查看 a 是如何定义的,以及它的属性被定义MSPageViewControllerB为什么类型的对象。view

于 2014-08-31T14:51:17.077 回答
0

我已经用以下代码解决了:

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"Main_iPhone" bundle:nil];
ViewControllerB *viewController = [storyboard instantiateViewControllerWithIdentifier:@"ViewControllerB"];
[self presentViewController:viewController animated:YES completion:nil];
于 2014-08-31T15:30:15.870 回答