1.cannot findexecutable forCFBundle 0x8d71a0 (notloaded)
不能 发现 可执行的 cfbunlde (没有加载) 意思就是说 有个对象没有被加载到成功
修改方法:还原模拟器
2.clang: error: linker command failed with exit code 1 (use -v to see invocation)
这个错误在到包的时候会遇到,排除他的方法比较无趣,1.有可能是你的.m文件重复编译,2有可能你倒拉不该倒的包,
3、系统抛出:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Could not load NIB in bundle: 'NSBundle </var/mobile/Applications/38AF505B-F07C-4CD5-8752-E0E8783330CB/hall.app> (loaded)' with name 'UserinfoOnNavibar'
原因:英语直译 因为“内部的不协调、不一致导致的异常”,所以无法加载NIB 文件;
实际的原因是,我直接拷贝了一个在xcode4.3下创建的xib文件改名后,在xcode4.5中用以上方法适配iphone5 时结果系统抛出如上错误。
解决方案:不要再用拷贝的方法了,自己手工在xcode4.5下建一个你要的xib文件吧。
原因就是上次动画还没结束,然后又开始了新的动画。 这样就导致不能成功切换页面,而是一个白色无内容的页面。
出现unbalanced calls to begin/end appearance transitions for uiviewcontroller这样的log,其原因就是在容器类的UIViewController(如,UINavigationController, UITabBarController)中动画没做完,然后又开始新的动画.。解决办法就是让动画完后再做新的动画。
解决方法1:去掉动画
解决方法2:监听当前view的动画是否完成
解决方法就是,加一个BOOL型的变量,检查是否在做动画。
if (transiting) {
return;
}
transiting = YES;
[self transitionFromViewController:_currentVC toViewController:newVC duration:0.5 options:UIViewAnimationOptionTransitionCrossDissolve animations:^{
} completion:^(BOOL finished) {
transiting = NO;
}];
5.No architectures to compile for (ONLY_ACTIVE_ARCH=YES, active arch=x86_64, VALID_ARCHS=i386).