我正在尝试从另一个方法调用一个方法,UIViewController
该方法接受一个字符串(url)作为参数并在UIWebView
. 下面是类IBAction
中的代码UIViewController
:
-(IBAction)dashboardButtonTapped:(id)sender {
[self performSegueWithIdentifier:@"dashboard" sender:self];
Dashboard *db = [[self storyboard] instantiateViewControllerWithIdentifier:@"dashboard"];
[db openDashboard:@"http://www.google.com"];
}
接受 url 字符串的方法在另一个名为 DashBoard 的类中:
-(void)openDashboard:(NSString *) url {
[self.myWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:url]]];
}
我没有收到任何错误,但UIWebView
始终为空白。
可能是什么问题?