无法控制 - 从表格视图拖动到故事板中的详细视图

时间:2013-06-09 18:43:56

标签: ios ios6 storyboard xcode4.5

我正在尝试学习如何使用故事板,但是在控件中遇到问题 - 从我的表视图拖动到详细视图;基本上,doens't auto-connect就像我有一些配置错误。

以下是它的样子: enter image description here

我是否应该能够做到这一点?

这是我创建单元格的代码:

-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
  static NSString *CellIdentifier=@"MyCell";
  UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  if(cell==nil){
    cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
  }
  cell.textLabel.text=self.tasks[indexPath.row];
  return cell;
}

这是我的视图控制器中的代码(虽然这似乎不相关):

-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
  [self performSegueWithIdentifier:@"taskSegue" sender:self.tasks[indexPath.row]];
}

-(void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
  UIViewController *destination = segue.destinationViewController;
  if([segue.identifier isEqualToString:@"taskSegue"])
    [destination setValue:sender forKeyPath:@"task"];
  else
    destination = [segue.destinationViewController topViewController];

  [destination setValue:self forKeyPath:@"delegate"];
}

thx fo

1 个答案:

答案 0 :(得分:1)

如果您在从tableview中选择单元格时查找详细信息视图,则应该从tableview控制器中的单元格进行拖动并连接到详细的viewController。