gpt4 book ai didi

ios - 切换到其他 View 会破坏应用程序 xcode

转载 作者:行者123 更新时间:2023-11-29 04:42:36 25 4
gpt4 key购买 nike

我正在开发一个应用程序,但是当我从第一个 View 切换到第二个 View (游戏级别)时。游戏中断:

@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}

并发出警报威胁 1:发出 SIGABRT 信号。

我不知道为什么,通过我的其他 View ,这段代码可以工作,但是当我想切换到这个 View 时,它就崩溃了。我的切换代码是:

-(void)collision {

if (CGRectIntersectsRect(Redsquare.frame, Invisible.frame)) {
Level2 *switchtosecondlevelchapter1 = [[Level2 alloc] initWithNibName:nil bundle:nil];

[self presentModalViewController:switchtosecondlevelchapter1 animated:YES];
}
}

我是新手,希望你能帮助我。提前致谢!

最佳答案

您的 Level2 Nib 名称字面意思是“Level2”吗?在这种情况下,您可以向 initWithNibName 提供 nil:但还要添加断点和 NSLog 来调试并查看它最后一次被调用的位置...例如,您是字面的presentModalViewController:代码可能没问题...但是您的 CGRectIntersectsRect 可能...关闭...一切都已初始化/非零查看这些不同的因素并回复评论

关于ios - 切换到其他 View 会破坏应用程序 xcode,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10142729/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com