gpt4 book ai didi

ios - 无法从 TableView 控制拖动到 Storyboard 中的详细 View

转载 作者:行者123 更新时间:2023-11-29 03:51:31 25 4
gpt4 key购买 nike

我正在尝试学习如何使用 Storyboard,但在从 TableView 到详细 View 的控制拖动方面遇到问题;基本上,它不会自动连接,就像我配置错误一样。

它看起来像这样: 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;
}

这是我的 View Controller 中的代码(尽管这看起来不相关):

-(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"];
}

谢谢

最佳答案

如果您在从表格 View 中选择单元格时要查找详细信息 View ,则应该控制从表格 View Controller 中的单元格拖动并连接到详细信息 View Controller 。

关于ios - 无法从 TableView 控制拖动到 Storyboard 中的详细 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17012936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com