Always having to sign into Apple Game Center in simulator in iOS7?
Always having to sign into Apple Game Center in simulator in iOS7?
Always having to sign into Apple Game Center in simulator in iOS7?
I struggled with this also, but I’ve found this is solved when you have a non-retina image named image.png and its retina counterpart is named [email protected]. So to fix yours you’ll need to name the first “Default-Portrait-1024~ipad” and the second “Default-Portrait-1024@2x~ipad”. The part preceding the “@2x~ipad” needs to be the same for it to recognize … Read more
Apparently the clang version in Xcode 5.1 and above is more strict about potential 32bit vs. 64 bit incompatibilities in source code than older clang versions have been. To be honest, I think, clang is too restrictive here. A sane compiler may throw a warning on lines like this but by no way it should … Read more
It looks like the problem is that SDL2 isn’t properly signed. There’s a ticket to fix the issue at https://bugzilla.libsdl.org/show_bug.cgi?id=2058. When you spawn an application from Xcode 5 with lldb, Xcode loads a plugin that will inspect modules your application loads, presumably to give you insight into your program. Xcode is set up to crash … Read more
iOS 7 apparently supports the Status Bar being hidden for some views but not others. To hide it for all views, do the following: Make sure Hide during application launch is still checked, to support previous OS versions. In your Info.plist file, add View controller-based status bar appearance and set it to NO. You may … Read more