gpt4 book ai didi

ios - 添加 View Controller

转载 作者:行者123 更新时间:2023-11-28 23:12:40 25 4
gpt4 key购买 nike

我正在处理一个包含多个 UIViewController 的项目。我刚刚添加了一个新按钮,当我点击新按钮时,应用程序崩溃并出现以下错误。

2011-10-11 22:51:57.227 BG-Prep[9156:207] *** Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[<ResourcesViewController 0x4b28540> setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key delegate.'

* 第一次抛出时的调用堆栈:

代码与其他两个工作正常的页面相同(文件名除外)。这是在告诉我什么?

- (IBAction)resourceButtonTapped:(id)sender; 
{
NSLog(@"Tapped the resource button");

ResourcesViewController *resourcesViewController = [[[ResourcesViewController alloc]
initWithNibName:@"ResourcesViewController" bundle:[NSBundle mainBundle]] autorelease];

NSLog(@"receiver's type: %@", NSStringFromClass([resourcesViewController class]));

resourcesViewController.modalTransitionStyle = UIModalTransitionStyleFlipHorizontal;
[self presentModalViewController:resourcesViewController animated:YES];

}

如果我取消注释这两行,我会得到以下内容:

2011-10-12 14:38:51.533 BG-Prep[10070:207] Tapped the resource button
2011-10-12 14:38:51.535 BG-Prep[10070:207] receiver's type: ResourcesViewController

最后一行 [self presentModalViewController:resourcesViewController animated:YES]; 导致应用程序崩溃,但为什么?

最佳答案

通常此错误表明您没有在 Nib 中设置 View 导出。进入用户界面 nib,右键单击“文件所有者”。将“ View ”右侧的圆圈拖到 Nib 的 Root View 上。这通常会让您恢复正常。

如果文件的所有者设置正确,那么这表明您在 View Controller 定义中不存在的 View 之一上指定了 IBOutlet。右键单击您的每个 View (包括您的 Root View )并检查以确保您的任何 IBOutlets 旁边没有黄色三角形警告。

关于ios - 添加 View Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7734787/

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