0
我創建了UIWebView
的單一視圖的應用程序在頂部導航欄,打開主頁。在導航欄,我想創建一個按鈕,其中,當被按下時,會帶給你回到UIWebView
的主頁。目前,當我按下導航欄上的「主頁」按鈕,退出該應用程序,並讓我在Safari中的URL。請幫我解決這個問題。我的代碼如下:如何使在導航欄中圓矩形按鈕中的UIWebView
ViewController.h:
@interface ViewController : UIViewController
{
IBOutlet UIWebView *MyWebView;
}
//Buttons:
-(IBAction)HomeButton;
ViewController.m:
//Buttons:
-(IBAction)HomeButton {
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"http://google.com"]];
}
- (void)viewDidLoad
{
[super viewDidLoad];
NSURL *myURL = [NSURL URLWithString:@"http://google.com"];
NSURLRequest *myRequest = [NSURLRequest requestWithURL:myURL];
[MyWebView loadRequest:myRequest];
}