应用程序和刷新按钮中的WebSite

时间:2012-12-16 12:18:29

标签: iphone ios web refresh

如何在应用程序的标签页上显示网站?

并创建刷新按钮

1 个答案:

答案 0 :(得分:0)

假设您要将UIWebView添加到UIViewController。把它放在你的viewDidLoad方法中:

UIWebView *wv = [[UIWebView alloc] initWithFrame:self.view.frame];
NSURLRequest *req = [[NSURLRequest alloc] initWithURL:[NSURL urlWithString:@"www.google.com"]];
[wv loadRequest:req];
[self.view addSubview:wv];

关于刷新按钮:确保.h文件中定义了'wv'并使用此方法:

- (IBAction)refresh
{
    [wv reload];
}