我正在尝试学习如何使用故事板,但是在控件中遇到问题 - 从我的表视图拖动到详细视图;基本上,doens't auto-connect
就像我有一些配置错误。
以下是它的样子:
我是否应该能够做到这一点?
这是我创建单元格的代码:
-(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
答案 0 :(得分:1)
如果您在从tableview中选择单元格时查找详细信息视图,则应该从tableview控制器中的单元格进行拖动并连接到详细的viewController。