我想要做的是我有一个书签系统,但我的问题是从第二个 UIViewController 中的 UITableView 获取 URL,并将选择的 URL 加载到第一个 UIViewController 中的 WebView 是可能的。我确实有一些代码,但这不起作用我需要解决我的问题
这是我目前拥有的代码
-(void)tableView:(UITableView*)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
ViewController *controller = [[ViewController alloc]init];
NSString *urlWeb = [subtitles objectAtIndex:indexPath.row];
[controller.igiWebView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlWeb]]];
[tableView deselectRowAtIndexPath:[tableView indexPathForSelectedRow] animated:YES];
[self dismissViewControllerAnimated:YES completion:nil];
}