gpt4 book ai didi

objective-c - 快速展开的解决方法

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

所以回答这个问题: Xcode 6 Storyboard Unwind Segue with Swift Not Connecting to Exit

我遇到了同样的问题并尝试了提供的修复程序,但它仍然不起作用。我觉得我的头文件缺少一个步骤,简单地将 .h 文件添加到我的项目并添加提到的行就足够了吗?或者还有更多?

IndexViewController.h:

@interface IndexViewController (Workaround)
- (IBAction)blaat: (UIStoryboardSegue *)segue;
@end

IndexViewController.swift:

@objc(IndexViewController) class IndexViewController : UITableViewController {
@IBAction func blaat(segue : UIStoryboardSegue) {
println("Test");
}
}

Edit1:我完成了第 3 步,即取消设置并重新设置 StoryBoard 中 IndexViewController 实例的自定义类

Edit2:修复它,问题确实在标题中。 IndexViewController.h 应该是:

@class IndexViewController;
@interface IndexViewController : UITableViewController
- (IBAction)unwindToIndexViewController: (UIStoryboardSegue *)segue;
@end

最佳答案

您缺少第 3 步:在 IB 检查器中清除 View Controller 类并将其重新设置。

关于objective-c - 快速展开的解决方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24080617/

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