0

我正在尝试通过将 URL 链接到按钮来从 DashboardViewController 打开网页。我有以下代码:

- (IBAction)facebook:(id)sender {
    [[DashboardViewController sharedApplication] openURL:[NSURL URLWithString:@"http://www.facebook.com"]];
}

但是,这会引发错误:

[DashboardViewController sharedApplication]: unrecognized selector sent to class 0xaba8
2013-04-22 23:23:35.264 LoginScreen[37692:c07] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[DashboardViewController sharedApplication]: unrecognized selector sent to class 0xaba8'

有人可以帮我吗?

4

1 回答 1

2

这是您问题的已解决答案-

  1. 按下按钮从应用程序打开网页

  2. 在 iOS 应用程序中打开网页

使用 UIWebView,您可以将其作为子视图添加到任何其他视图,然后使用您的 URL 调用 loadRequest。

于 2013-04-23T04:38:01.580 回答