54

I am hoping someone has had these errors and knows how to fix it.
This is the console output in Xcode 5 b4 that suddenly appeared:

Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/AccessibilityBundles/CertUIFramework.axbundle> (not loaded)

Jano
  • 62,815
  • 21
  • 164
  • 192
Rene Kahle
  • 541
  • 1
  • 4
  • 5

3 Answers3

88

Temporary workaround: click iOS Simulator > Reset Content and Settings... and run again.

This error message may reappear at random. For me, it happens when I launch a different application. There are several threads in Apple dev forums and in StackOverflow about this problem, but none have a definitive answer. This seems to be a SDK error.

Updated: February 10, Xcode 5.1b5.

Jano
  • 62,815
  • 21
  • 164
  • 192
  • Wow, how did you figure this out? Saves me a ton of effort! Thanks. – Tony Sep 26 '13 at 09:39
  • 1
    SO didn't have a solution, so I went to the Apple dev forums and found it there. – Jano Sep 26 '13 at 11:08
  • 1
    It will appear again at some point, but good enough until Apple releases another Xcode. – Jano Sep 26 '13 at 23:26
  • 23
    This didn't work for me. Not downvoting because clearly this works for some people and is therefore helpful, but for the record, I still get the same error on next app launch. – Mark Amery Oct 03 '13 at 12:57
3

I had this problem when using the KIF testing framework as imported via CocoaPods. Removing this pod resolved the problem. KIF uses some private frameworks for accessing UI elements so this seems like a reasonable cause

JConway
  • 569
  • 5
  • 13
2

If the reset of the simulator does not solve your problem try the following:

In Terminal type:

open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs

Delete your "iPhoneSimulator7.0.sdk". Then reinstall Xcode. Reinstalling is really fast because just the missing folder gets replaced. This fixed it for me.

Git.Coach
  • 3,032
  • 2
  • 37
  • 54