我有一个表格视图,它会在单元格单击时推送详细视图。新视图推送但是我试图将网址传递给加载 webView 的详细视图,但我不确定如何执行此操作。这是我的代码:
-(void)setupArray {
webAddress = [[NSMutableDictionary alloc]init];
[webAdress setObject:@"http://www.google.com.au" forKey:@"first item"];
[webAdress setObject:@"http://www.yahoo.com.au" forKey:@"second item"];
menuItems = [webAdress allKeys];
}
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [webAdress count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *simpleTableIdentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
}
cell.textLabel.text = [menuItems objectAtIndex:indexPath.row];
return cell;
}
- (void) tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
DetailViewController *detailView = [self.storyboard instantiateViewControllerWithIdentifier:@"detail"];
[self.navigationController pushViewController:detailView animated:YES];
}
任何帮助将不胜感激。