url 未在 UIWebView 中加载

发布于 2024-10-31 19:16:58 字数 668 浏览 1 评论 0原文

我有一个标签栏控件。第一个选项卡包含导航控件。在第二个选项卡上,我想加载一个网页(例如 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

扶醉桌前 2024-11-07 19:16:58

要知道出了什么问题,你可以这样做。

- (void)viewDidLoad {
  [super viewDidLoad];
  webView.delegate = self;
  NSURL *url = [NSURL URLWithString:@"http://www.google.com"]; 
  NSURLRequest *request = [NSURLRequest requestWithURL:url]; 
  [webView setScalesPageToFit:YES];         
  [self.webView loadRequest:request];               
}

在您的类中添加这个新方法

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
   NSLog(@"Error : %@",error);
}

我希望您已将 webView 对象与其在界面生成器中的出口连接起来?

谢谢,

to know whats wrong you can do this.

- (void)viewDidLoad {
  [super viewDidLoad];
  webView.delegate = self;
  NSURL *url = [NSURL URLWithString:@"http://www.google.com"]; 
  NSURLRequest *request = [NSURLRequest requestWithURL:url]; 
  [webView setScalesPageToFit:YES];         
  [self.webView loadRequest:request];               
}

add this new method in your class

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
   NSLog(@"Error : %@",error);
}

I hope you have connected webView object with its outlet in Interface builder?

Thanks,

ま昔日黯然 2024-11-07 19:16:58

您必须使用 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."

夏の忆 2024-11-07 19:16:58

创建你的 webView

IBOutlet UIWebView *webView;

试试这个代码

NSString *urlAddress = @"http://www.google.com";

    //Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];

    //URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

    //Load the request in the UIWebView.
[webView loadRequest:requestObj];

Create you webView

IBOutlet UIWebView *webView;

Try this code

NSString *urlAddress = @"http://www.google.com";

    //Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];

    //URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];

    //Load the request in the UIWebView.
[webView loadRequest:requestObj];
回眸一笑 2024-11-07 19:16:58

重新启动您的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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文