UIViewController文字列(url)をパラメーターとして受け取り、.xml で開く別のメソッドを呼び出そうとしています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常に空白です。
何が問題になる可能性がありますか?