gpt4 book ai didi

iphone - 通过单击 UITableViewCell 将 UIWebView 推送到 UINavigationController 后未加载

转载 作者:行者123 更新时间:2023-11-28 22:46:35 26 4
gpt4 key购买 nike

尝试使用 WebView 加载 www.google.com,该 WebView 具有从我的 Storyboard 中实例化的子类 UIViewController。单击 UITableViewCell 时,它将被推送到屏幕上。

我正在使用以下代码,但我只得到一个白屏。请帮忙。

(我没有错误)

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];

_webViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"WebView"];

[self.navigationController pushViewController:_webViewController animated:YES];

[_webViewController.webView loadRequest:request];
}

谢谢!

最佳答案

这行不通...

在 _webViewController 本身中尝试最后一行 ([_webViewController.webView loadRequest:request];)..

关于iphone - 通过单击 UITableViewCell 将 UIWebView 推送到 UINavigationController 后未加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13079527/

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