App frozen by UIKit after upgrading to Xcode 7

After upgrading my project to Swift 2.0 and using Xcode 7 (GM), I noticed that some of my view controllers hinder the application in navigation.

The tools show that CPU utilization is over 9000% and is used by UIKit and Foundation.

Have you encountered this problem?

+3
ios xcode xcode7 interface-builder
source share
1 answer

This seems to be one of those issues with the Builder interface.

I successfully defeated this by removing any text from the UITextView in the storyboard. And again this will happen if I return the text.

Hope this helps someone not to waste precious time.

+7
source share

All Articles