Xcode storyboard: Internal error. Please file a bug

后端 未结 18 1791
不知归路
不知归路 2020-12-12 23:18

While editing in the storyboard, specifically assigning a view controller to a specific class, I suddenly encountered this error when I wanted to run the project.

Ma

相关标签:
18条回答
  • 2020-12-12 23:53

    I had the same issue. Got it fixed using below steps :

    1. Delete the derived data of your project

    2. Clean your project (Shortcut : cmd + shift + k)

    1. Now, run your app.
    0 讨论(0)
  • 2020-12-12 23:54

    No solution above work for me. I fix it with this:

    • close xcode
    • open Terminal app and goto project directory
    • run command 'pod install'. it regenerate my project
    • open project in xcode again

    note: this only for project with cocoapod installed project

    0 讨论(0)
  • 2020-12-12 23:57

    I simply removed the file causing this issue (just reference not delete) and re-added it again.

    0 讨论(0)
  • 2020-12-12 23:59

    Here are the steps to fix this issue:

    Uncheck target for the xib file -> clean the project->then check the target->clean the project-> run/build the project. Working in xcode 8.x

    0 讨论(0)
  • 2020-12-12 23:59

    I'm using Xcode 9.2 and all the above answers didn't solve the issue. My issue was that i added a constraint accidentally to the TableViewCell Content View. And content view is not constraint applicable and i'm not supposed to add constraints to it. It is already locked. But i really don't know how i added constraint to it accidentally. After deleting the constraint everything started working again perfectly fine.

    I thought this answer would help somebody having my same issue.

    0 讨论(0)
  • 2020-12-13 00:00

    Just close your Xcode and open it again. issue will be gone.

    0 讨论(0)
提交回复
热议问题