开发者

launching UIWebview with specific url

开发者 https://www.devze.com 2023-01-06 07:01 出处:网络
I currently have a view with four buttons, and would like to be able to launch UIWebview with a specific url for each different button.

I currently have a view with four buttons, and would like to be able to launch UIWebview with a specific url for each different button.

I开发者_运维问答 currently am able to launch safari externally with the urls.

I know I can have the code to show the UIWebview within each button, and can set the url withing the viewDidLoad of the UIWebview, but I need a way to load a specific page depending on which button was pressed.

Regards


somtheing like this should be called in the IBAction for the buttom click. you can specify a different URL based on the sender

UIWebView *webView = [[UIWebView alloc] initWithFrame: CGRectMake(0.0, 0.0, 1.0, 1.0)];  
webView.delegate = self;

NSURLRequest *request = [[NSURLRequest alloc] initWithURL: [NSURL URLWithString: @"www.url.com"] cachePolicy: NSURLRequestUseProtocolCachePolicy timeoutInterval: myTimeoutValue];  
[self.webView loadRequest: request];  
0

精彩评论

暂无评论...
验证码 换一张
取 消