gpt4 book ai didi

ios - 如何从 UI cellView xib 调用 MainStoryBoard 的 View controller

转载 作者:行者123 更新时间:2023-11-29 00:36:06 25 4
gpt4 key购买 nike

我想调用 MainStoryBoard 的 View Controller 的问题。我已经在 xib 文件中创建了 UIcellView,并且在该文件上有按钮,所以我想在按下按钮时继续 AddLocationVC viewController。

我写了一些代码

UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:Nil];

AddLocationVC *view = [storyBoard instantiateViewControllerWithIdentifier:@"AddLocation"];

当我按下按钮时它不起作用,它不会在 View Controller AddLocationVC 上重定向我,但 Controller 将出现在这部分代码中。

最佳答案

最有效的方法是使用协议(protocol) block 。使用委托(delegate)协议(protocol)的步骤是:

  1. 在自定义单元格class中定义DelegateProtocol
  2. cellForItem/RowAtIndexPath: 中,使您的 ViewController 成为单元格的 delegate 并在其中实现 protocol 。在这里,您将实例化新的 ViewController 并呈现/推送它
  3. 点击按钮时调用委托(delegate)方法

关于ios - 如何从 UI cellView xib 调用 MainStoryBoard 的 View controller,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40572332/

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