gpt4 book ai didi

iOS UIWebView 无法加载

转载 作者:行者123 更新时间:2023-11-29 02:11:08 27 4
gpt4 key购买 nike

我在 Storyboard中制作了一个简单的UIWebView

现在发生的情况是,当开始屏幕出现时,应用会停止在那里。

我的代码有问题吗?

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad
{
[super viewDidLoad];
NSString *fullURL = @"http://google.com";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_webView loadRequest:requestObj];
}

@end

和我的.h:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIWebView *webView;

@end

最佳答案

是尝试尝试

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

变成

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

如果不是工作选择2

_webView.delegate = self;

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

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

我希望您已经将 webView 对象与其在 Interface builder 中的 outlet 连接起来了吗?

如果您需要更多帮助,请查看此 tutorial

关于iOS UIWebView 无法加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29275685/

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