我有一个收藏夹弹出框和一个 webView。当您在弹出框的 tableview 中选择一个单元格时,webview 应该加载该 URL,但我得到一个 SIGABRT 或 BAD_ACCESS。
这是一些代码:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
if (tableView == favoritesTable1) {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
textField.text = cell.textLabel.text;
[web loadRequest:[[NSURLRequest alloc] initWithURL:[[NSURL alloc] initWithString:cell.textLabel.text]]];
[cell release];
[favoritesTable1 reloadData];
}
}
我想得到这样但完整的工作:http ://cl.ly/3O2y1S3b3d031L2C122M
PS:弹出框是来自设置 webview 的同一类的新 viewController。