我目前有以下代码从另一个视图加载 UIWebView。现在无论如何我可以有一个关闭按钮吗?
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UIWebView *webView=[[UIWebView alloc] initWithFrame:CGRectMake(0,0,320,480)];
[self.view addSubview:webView];
NSURLRequest *urlRequest;
NSURL *urlforWebView;
urlforWebView=[NSURL URLWithString:@"http://www.google.com"];
urlRequest=[NSURLRequest requestWithURL:urlforWebView];
[webView loadRequest:urlRequest];
}
我将加载使用 jquery mobile 构建的页面,因此页面内的关闭按钮也可以正常工作。但在导航栏上将是理想的。顺便说一句,我的应用程序没有UINavigationBar