Unable to open storyboard with Xcode 6

I have a project with 2 storyboards built into Xcode 5.1. When I open any of them in Xcode 6, I get this error. They never opened in any beta, so I don't think this is an Xcode bug. Last attempt at Xcode 6 GM.

The document "Main_iPhone.storyboard" cannot be opened. The operation could not be completed. (error com.apple.InterfaceBuilder -1.)

The magazine says this:

ibtoold[1880:1335652] Exception raised while unarchiving document objects - -[NSTaggedPointerString getCharacters:range:]: Range {0, 10} out of bounds; string length 9
    Recovery Suggestion: Check the console log for additional information.
+4
source share
3 answers

Did the job when cleaning the Image Property of some UIImageView with .png format. I am afraid, in the end, it was a mistake in Xcode 6. I hope this question helps someone.

+6
source

StoryBoards. UIViewController, PNG.

XIB , PNG, . XIB Xcode.

+1

:

( Xamarin):

1: UIImageView.Image

, Image UIImageView .xib, (, ViewDidLoad()). . http://developer.xamarin.com/guides/ios/application_fundamentals/working_with_images/ UIImage.FromBundle() UIImage.FromFile().

2.

.xib, .

3. , .app

.csproj :

, .app:

  image.png


Xamarin :

https://forums.xamarin.com/discussion/26272/yosemite-failed-to-compile-interface-file-xamarin-ios-8-2-xcode-6-1

RobertDebault :

If you have a path statement in your image interface interface then it will fail. You need to delete all image path instructions and place the images in the resources folder. It sucks, and Apple said that this way it should be done from here.

A message appears stating that Apple requires developers to now save images in the "Resources" folder ...

0
source

All Articles