gpt4 book ai didi

ios - 执行从 - TableViewCell.xib 到 UIView - 和 - TableView.xib 到 UIViewController -

转载 作者:搜寻专家 更新时间:2023-11-01 06:41:57 24 4
gpt4 key购买 nike

如何在单击 TableCell 时执行从一个 .xib (TableCell.xib) 到另一个 .xib(UIViewController) 的转换?

  override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
print(results?[indexPath.row]) // prints successfully
...
// apply below chunks here...
}

首先,我尝试在 Storyboard 中设置手动转场。请注意,TableView 和 TableViewCell 是外部 xib,但 TableView 的父级在 Storyboard 中。因此,我尝试从父 ViewController 控制拖动到 detailViewController(和标识符:showDetails)。但是,不起作用。

      ...
NSOperationQueue.mainQueue().addOperationWithBlock({ () -> Void in
self.performSegueWithIdentifier("showDetails", sender: AnyObject?())
})
...

显然,我收到了这个错误(因为 TableView 在 .xib 中,而 parent 和 detailsVC 在 Storyboard 中,我 ctrl+ 从 parentVC 拖到 detailsVC 但 TableView1 显然无法识别 Main Storyboard 中的 segue):

TableView1: 0x7f97626a3280>) has no segue with identifier 'showDetails''


然后我尝试创建一个 ViewController 并尝试添加 var parentNavigationController : UINavigationController!在顶部并在 didSelectRowAtIndex 中引用下面的 block

   ...
let newVC : UIViewController = CellDetailsVC()
newVC.title = "DetailsView"
print(newVC)

parentNavigationController!.pushViewController(newVC, animated: true)

但是,我收到一个错误:

DetailsVC: 0x7ff7794ae550> fatal error: unexpectedly found nil while unwrapping an Optional value


最后,我也尝试了下面的 chunk inside didSelectRowAtIndex ,并得到一些接近的东西(因为我可以使用 dismissView 到 < Back );但不完全是我想要的。它的问题是 segue 动画看起来像是页面从底部开始。

   ...
let storyboard = UIStoryboard(name: "Main", bundle: nil)
let vc = storyboard.instantiateViewControllerWithIdentifier("VideoDetailsVC") as UIViewController
self.presentViewController(vc, animated: true, completion: nil)
}

由于某种我无法弄清楚的原因,我也收到了警告(但不是崩溃):

Presenting view controllers on detached view controllers is discouraged


  • 哪种方法是正确的?还是有更好的方法来适应以实现我正在尝试的目标?

  • 首先,从 didSelectRowAtIndex (in TableView.xib class) 执行 segue 的正确方法是什么?到新的 ViewController(Storyboard 或 xib)?

  • 其次,假设 TableViewCell.xib 中有一个图像缩略图.单击该 View 时对新 UIView 执行 segue 的正确方法是什么? (如全屏图像/可关闭)

最佳答案

你的第二种方法看起来是正确的,但当然你在那里做错了。您需要将 Segue 从 Parent ViewController 拖放到 Detail ViewController 并在 Storyboard 中给它一个 Segue 标识符(检查下面的附图)。在 didSelectRowAtIndexPath 中,您需要执行以下代码:

    self.performSegueWithIdentifier("showDetailViewController", sender: nil)

正如我所见,您已经尝试过了,但您似乎错过了一些步骤,要么设置 Segue 标识符,要么在 performSegueWithIdentifier 方法中提供错误的标识符。此外,您的 Parent ViewController 应该嵌入到 UINavigationController 中,以防您遗漏了那个东西 :) enter image description here

另外请记住,您应该执行从一个 ViewController 到同一级别的另一个 ViewController 的导航(此处为 Segue),而不是从一个 View 到另一个 ViewController。

关于ios - 执行从 - TableViewCell.xib 到 UIView - 和 - TableView.xib 到 UIViewController -,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34129126/

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