没有可见的@interface'UIView'声明选择器'loadRequest'

时间:2013-11-27 10:15:51

标签: ios iphone objective-c uiview uiwebview

我正在按照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.
}

我该如何解决?

1 个答案:

答案 0 :(得分:2)

正如@NiravPatel所提到的,@ Chancy。我在第15步犯了这个错误。

我正在使用

 @property (strong, nonatomic) IBOutlet UIView *viewWeb;

而不是

 @property (strong, nonatomic) IBOutlet UIWebView *viewWeb;