gpt4 book ai didi

ios - 带有 UIWebview 的“NSUnknownKeyException”

转载 作者:行者123 更新时间:2023-12-03 17:37:41 26 4
gpt4 key购买 nike

我正在尝试创建一个从带有三个按钮的主页开始的应用程序。按下的每个按钮都会切换到另一个 View 。每个 View 只是一个空白 View ,上面有一个 UIWebView。当没有任何内容时,转换到每个页面都可以正常工作。但是,当我添加 UIWebview 和所有正确的代码时,转换到页面会导致应用程序崩溃并显示以下错误消息:

* Terminating app due to uncaught exception 'NSUnknownKeyException', reason: '[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key viewWeb.' * First throw call stack: (0x1c94012 0x10d1e7e 0x1d1cfb1 0xb7de41 0xaff5f8 0xaff0e7 0xb29b58 0x233019 0x10e5663 0x1c8f45a 0x231b1c 0xf67e7 0xf6dc8 0xf6ff8 0xf7232 0x259b 0x10e5705 0x192c0 0x19258 0xda021 0xda57f 0xd96e8 0x48cef 0x48f02 0x26d4a 0x18698 0x1befdf9 0x1befad0 0x1c09bf5 0x1c09962 0x1c3abb6 0x1c39f44 0x1c39e1b 0x1bee7e3 0x1bee668 0x15ffc 0x1e92 0x1dc5) libc++abi.dylib: terminate called throwing an exception



我很肯定所有 UIWebView 代码都是正确的,因为我在一个新应用程序中测试了完全相同的代码,该应用程序只在单个 View 上运行并且没有转换。但这是我用于过渡的代码:
- (IBAction)floorCatalog:(id)sender {
UIViewController* floorLampsViewController = [[UIViewController alloc] initWithNibName:@"floorLampsViewController" bundle:[NSBundle mainBundle]];
[self.view addSubview:floorLampsViewController.view];
}
- (void)dealloc {
[_floorLampsButton release];
[_tableLampsButton release];
[_wallLampsButton release];
[super dealloc];
}
- (void)viewDidUnload {
[self setFloorLampsButton:nil];
[self setTableLampsButton:nil];
[self setWallLampsButton:nil];
[super viewDidUnload];
}

这是我用于 WebView 的代码:
@property (retain, nonatomic) IBOutlet UIWebView *viewWeb;
[self.viewWeb loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://www.bing.com"]]];

为什么这种情况不断发生?谢谢!

最佳答案

viewWeb 是否连接到 Interface Builder 中的 UIWebView?看起来 viewWeb 没有初始化什么的,看到你正在使用 IBOutlet 让我觉得它在你的 Nib 中。

关于ios - 带有 UIWebview 的“NSUnknownKeyException”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17734209/

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