Could not instantiate class named IBNSLayoutConstraint

后端 未结 8 1671
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-08 01:50

I\'m using XCode6 beta and trying out Swift. When I put some auto layout constraints in a view controller the app crashes with the following error: Terminating app

相关标签:
8条回答
  • 2020-12-08 02:20

    You're getting this error because you've set a constraint to an IBOutlet that is removed at runtime. This happens when you set the constraint to be a placeholder in Interface Builder. Since the constraint is removed, when it goes to unarchive it, it throws an error saying it can't do so.

    There are two ways to correct this.

    Method 1

    1. Right-click on your Storyboard > Open As > Source Code
    2. In the opened storyboard xml, search for placeholder="YES".
    3. You'll find constraints that are set to be removed at runtime. Remove the placeholder attribute from the constraint, save and close.
    4. Run the app and your problem should be fixed.

    Method 2

    1. Find the constraint that's causing your problems in Interface Builder. Uncheck the Placeholder option in the GUI. This should be one of the constraints that's set to an IBOutlet in the ViewController that's causing your crash.

    Interface Builder attribute editor showing the Placeholder option checked.

    This is what it should look like:

    Interface Builder attribute editor showing the Placeholder option unchecked.

    Alternative

    Assuming you actually want the constraint to be a placeholder, then you'll need to remove any referencing outlets. To do this, select the constraint that you wish to be a placeholder. Then open the connections inspector (the button furthest to the right that looks like this: (->) ) and then remove any referencing outlets that may exist on that constraint.

    0 讨论(0)
  • 2020-12-08 02:23

    I made a change to a scroll view so that it would let the picker controls embedded in it work properly using a solution I found elsewhere in Stackoverflow. My new storyboard simply added these attributes to the scroll view, which seemed fine to me.

         delaysContentTouches="NO" canCancelContentTouches="NO"
    

    But in addition, I saw in my storyboard in another scene the following new fragment:

                        <variation key="default">
                            <mask key="subviews">
                                <exclude reference="86H-aM-wei"/>
                            </mask>
                        </variation>
    

    I have no idea where it came from. At first I ignored it because everything seemed to work find on my dev machine. But when the build was built as Release and tested, I got the crash. Removing that spurious(?) fragment fixed the crash and has not seemed to impact anything else.

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