Xcode 6: Build hangs and Interface Builder Cocoa Touch Tool starts allocating all RAM

前端 未结 13 2144
青春惊慌失措
青春惊慌失措 2020-12-24 05:43

I’m having an issue to which I haven’t been able to find a solution just by searching here or on Google.

I’m building a project which is shared by multiple developer

13条回答
  •  [愿得一人]
    2020-12-24 06:31

    I had the exact same problem: opening the storyboard in xcode results in beach ball with the Interface Builder task consuming all the memory. I got it back working by editing the xml of the storyboard file and setting

    useAutolayout="NO"
    

    in the document node. Of cause this is not a solution to the problem (which seems to be a bug in xcode) because it screws all constraints, but at least I could open and compile the storyboard again.

提交回复
热议问题