0

おはようございます。

小さなアプリを開発しようとしていますが、助けが必要です...

ボタンから WebView に URL を渡す必要があります。4 つのボタンがあります。BT1 を選択すると、url=www.google.com で WebView が開きます。BT2 を選択すると、同じ WebView が別の URL (www.apple.com) で開きます。

ご協力いただきありがとうございます。

4

1 に答える 1

1

アクションをボタンに割り当て、ViewController に UIWebViewDelegate を実装することを忘れないでください...

-(IBAction)button1Clicked:(id)sender{
    [self loadWebViewWithURL:@"http://www.google.com"];
    }

    -(IBAction)button2Clicked:(id)sender{
    [self loadWebViewWithURL:@"http://www.apple.com"];
    }

    -(IBAction)button3Clicked:(id)sender{
    [self loadWebViewWithURL:@"http://www.yahoo.com"];
    }

    -(IBAction)button4Clicked:(id)sender{
    [self loadWebViewWithURL:@"http://www.microsoft.com"];
    }

    -(void)loadWebViewWithURL:(NSString*)urlstr{

        NSURLRequest *request=[NSURLRequest requestWithURL:[NSURL URLWithString:urlstr] cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData timeoutInterval:30.0f];
        [myWebView loadRequest:request];
    }
于 2013-02-06T10:33:21.027 に答える