我在Xcode上得到一个错误说没有关于视图控制器的信息。

无法插入新的出口连接:无法找到所命名类的任何信息

为什么会这样?


当前回答

这些方法对我都没用,但我确实找到了答案。

在故事板中,我复制了相应的ViewController到剪贴板中并删除了它,之后我再次粘贴它。

突然之间,一切都恢复了正常。

其他回答

当我在Objective-C项目中添加一个Swift文件时,就发生了这种情况。 在这种情况下,你能做的就是。

选择MY_FILE.Swift >>删除>>删除引用 选择MY_FOLDER >>添加MY_FILE.Swift 瞧!你可以出发了。

我选择了Automatic选项来选择ViewController.swift文件。然后我可以取outlet。

关闭你正在做的项目。 删除项目的【DerivedData】文件夹。这个文件夹可能在里面 项目的文件夹或内部 ~ /图书馆/开发/ Xcode / DerivedData / (你的项目)/)或其他由你设置的地方。 重新启动项目。

以下是一些可以解决这个问题的方法(难度依次递增):

Clean the project (Product > Clean) Manually paste in @IBOutlet weak var viewName: UIView! // or @IBAction func viewTapped(_ sender: Any) { } and control drag to it. (Change type as needed.) Also see this. Completely close Xcode and restart your project. Delete the Derived Data folder (Go to Xcode > Preferences > Locations and click the gray arrow by the Derived Data folder. Then delete your project folder.) Click delete on the class, remove reference (not Move to Trash), and add it back again. (see this answer)

当我重命名类时,我得到了这个bug。然后我按照下面的步骤解决了这个问题

在Xcode菜单->产品->清洁 重新启动Xcode