我正在按照this教程创建一个webView应用程序。我完全遵循了所有步骤,但得到了这个错误:
No visible @interface 'UIView' declares the selector 'loadRequest'
-
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *fullURL = @"http://google.com/";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_viewWeb loadRequest:requestObj];
// Do any additional setup after loading the view, typically from a nib.
}
我该如何解决?
答案 0 :(得分:2)
正如@NiravPatel所提到的,@ Chancy。我在第15步犯了这个错误。
我正在使用
@property (strong, nonatomic) IBOutlet UIView *viewWeb;
而不是
@property (strong, nonatomic) IBOutlet UIWebView *viewWeb;