url 未在 UIWebView 中加载
我有一个标签栏控件。第一个选项卡包含导航控件。在第二个选项卡上,我想加载一个网页(例如 google.com)。我已将代码编写为
NPIViewController.h
@interface NPIViewController : UIViewController {
IBOutlet UIWebView *webView;
}
@property (nonatomic,retain) IBOutlet UIWebView *webView;
@end
NPIViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView setScalesPageToFit:YES];
[self.webView loadRequest:request];
}
该页面无法加载。没有编译或运行时错误。这有什么问题吗?
i have a tab bar control. 1st tab contains a navigation control. On the 2nd tab i want to load a web page (say google.com). I have written the code as
NPIViewController.h
@interface NPIViewController : UIViewController {
IBOutlet UIWebView *webView;
}
@property (nonatomic,retain) IBOutlet UIWebView *webView;
@end
NPIViewController.m
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://www.google.com"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[webView setScalesPageToFit:YES];
[self.webView loadRequest:request];
}
The page just does not load. No compilation or runtime errors. What is wrong in this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要知道出了什么问题,你可以这样做。
在您的类中添加这个新方法
我希望您已将 webView 对象与其在界面生成器中的出口连接起来?
谢谢,
to know whats wrong you can do this.
add this new method in your class
I hope you have connected webView object with its outlet in Interface builder?
Thanks,
您必须使用 https 而不是 http。如果您使用 http,您将收到此错误消息(使用 Ravin 的代码查看错误):
“无法加载资源,因为应用程序传输安全策略需要使用安全连接。”
You have to use https instead of http. If you use http you will get this error message (use Ravin's code to see the error):
"The resource could not be loaded because the App Transport Security policy requires the use of a secure connection."
创建你的 webView
试试这个代码
Create you webView
Try this code
重新启动您的IOS模拟器。
这确实不明显,但首先在 IOS 模拟器的 Safari 中检查一些网站。
重新启动 IOS 模拟器后,我的 webView 在模拟器和设备上都成功打开。
请参阅此著名链接。
Restart your IOS simulator.
It is really not evident, but at first check some site in Safari at IOS simulator.
After restart of IOS simulator, my webView opened successfully both at simulator and device.
See this famous link.