以编程方式创建Web视图和返回上一视图的按钮
|
我将欣赏有关如何创建Web视图并设置返回按钮的概念,以便用户可以在上一个视图上返回。
我有一个进入详细视图的表格视图,在详细视图上有一个连接了URL链接的按钮。现在,当选择此按钮时,它应该打开一个Web视图(应该是另一个.xib文件吗?),在Web视图上,我需要一个带有返回按钮的工具栏,该按钮将返回详细视图
我需要有关如何执行此操作的想法
谢谢大家
-编辑
我有
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
aBook = [delegate.books objectAtIndex:indexPath.row];
// Configure the cell.
titleValue = aBook.title;
authorValue = aBook.author;
urlValue = aBook.bookUrl;
detailViewController = [[DetailView alloc] initWithNibName:@\"DetailView\" bundle:nil];
detailViewController.title = titleValue;
detailViewController.author = aBook.author;
detailViewController.bookUrl = aBook.bookUrl;
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];
}
这设置了详细信息视图的值,所以我应该将其发送给Web视图吗?
没有找到相关结果
已邀请:
1 个回复
导力疵谜