gpt4 book ai didi

ios - override func prepare(for segue : UIStoryboardSegue, sender : Any?) 未被调用

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:47 27 4
gpt4 key购买 nike

我在我的项目中使用了 RevealViewController。我已经正确地为 segue Action 提供了所有连接。但是 segue 方法没有调用。我已经在 objective-c 中使用了它,它工作正常。但为什么它不 swift 调用。

最佳答案

您是说所有连接都在 Storyboard 中并且未调用委托(delegate)方法。

所以答案很简单,可以是以下两个选项之一:

1- Collection View 的大小为零。在这种情况下,出于优化原因不会调用委托(delegate)方法

2- Collection View 的委托(delegate)和/或数据源属性未附加到 Storyboard 中的 View Controller 。您可以在连接 Pane 中检查这一点

3- 另一个我无法解释的选项(发生在我身上一次),只与 swift 有关! 您的委托(delegate)方法是在 View Controller 中定义的,而不是作为扩展定义的。我不知道为什么,但它在过去给我带来了问题。您(也许)需要将委托(delegate)方法定义为以下伪代码:

// MARK: UICollectionViewDataSource implementation 
extension YourCollectionViewController {
func yourDataSourceDelegeteMethod() { ... }
}

为您的 Collection View 委托(delegate)实现做同样的事情

关于ios - override func prepare(for segue : UIStoryboardSegue, sender : Any?) 未被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47741791/

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