iPad模拟器无法运行我的应用程序!它加载并设置动画,然后在加载动画中途崩溃。
Xcode报告:调试已终止。为什么呢?
我刚刚在iPod touch(8GB)上安装了这个,我重启了它们。
编辑:
委托中的此代码似乎导致了一个问题:
NSLog(@"Device: %@", [[UIDevice currentDevice] userInterfaceIdiom]);
为什么会有这样的想法?
答案 0 :(得分:1)
[[UIDevice currentDevice] userInterfaceIdiom]
不会返回%@
格式说明符所需的对象。
尝试NSLog(@"Device: %d", [[UIDevice currentDevice] userInterfaceIdiom]);