私がやろうとしているのは、ブックマークシステムを設置していることですが、私の問題は、2 番目の UIViewController の UITableView から URL を取得し、選択した URL をロードして最初の UIViewController の WebView にロードすることです。いくつかのコードが配置されていますが、それが機能しないため、問題の解決策が必要です
私が現在持っているコードはheresです
-(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];     
}