After many problems when starting the iOS 7 simulator (many of the suggestions there ... including reinstalling Xcode5 .. I am trying to run an Apple HelloWorld sample that MUST be a test link.
build first .. it works on the simulator however one day you can see many errors in the simulator console, including the incorrect bunlde one ...
extracted from the simulator console log https://gist.github.com/erwin/7230844
Oct 30 08:26:37 macMini profiled[1456] <Notice>: (Note ) MC: Waiting for DataMigrator... Oct 30 08:26:40 --- last message repeated 3 times --- Oct 30 08:26:40 macMini SpringBoard[1460] <Error>: objc[1460]: Class AXEmojiUtilities is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/usr/lib/libAXSpeechManager.dylib. One of the two will be used. Which one is undefined. Oct 30 08:26:40 macMini com.apple.iphonesimulator.launchd.7e32645e[1451] (com.apple.xpc.launchd.domain.pid.SpringBoard.1460) <Error>: Failed to bootstrap path: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator7.0.sdk/System/Library/PrivateFrameworks/CloudServices.framework/XPCServices/com.apple.lakitu.xpc error: 107: Malformed bundle Oct 30 08:26:41 macMini profiled[1456] <Notice>: (Note ) MC: Waiting for DataMigrator...
but at least it works ...
obviously this sample is not updated .... so I get a warning
Oct 30 08:51:26 macMini HelloWorld[1792] <Warning>: Application windows are expected to have a root view controller at the end of application launch
and I changed the code as a result by adding a root view controller
[window addSubview:controllersView]; [window setRootViewController:myViewController]; [window makeKeyAndVisible];
I clean the Xcode product, I cleaned and reset the simulator, then I closed it .. new build and start ... the simulator is open, but it does not start the HelloWorld application ...
I do not see a crash in the log of the simulator console https://gist.github.com/erwin/7230768 but nothing happens, the simulator seems to be lost in the air .... and there is no clear explanation of HOW TO DO IT TO BE USED CORRECTLY from Apple ...
ios7 ios-simulator xcode5
erwin
source share