objective-c – Xcode 4“等待进程’Appname’启动

我安装了 Xcode 4,现在无法运行我的一个iPhone项目.
Copyright 2004 Free Software Foundation,Inc.
GDB is free software,covered by the GNU General Public License,and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin".sharedlibrary apply-load-rules all
Waiting for process 'AppName' to launch.

在顶部状态栏上,我看到“附加到AppName”.
该项目唯一奇怪的事情是它依赖ZXingWidget进行QR码扫描.

更奇怪的是它适用于同事计算机,但不适用于我的计算机.

尝试删除我的构建目录,没有骰子.

我可以在Xcode 4中从源代码运行其他iPhone项目没有问题.

有没有人见过这个?

解决方法

我在 Apple Developer Forums发现的一个提示

Go into your ProjectName.xcodeproj/
directory and delete anything named
with your userid. Re-open the
project in xcode and all that will get
recreated and it should work. At least
it did for me.

另一个提示是手动删除构建目录.

还有一个提示是导航到管理器(在xcode 4中按Shift→命令⌘2),选择项目,在左侧选择您的应用程序,然后在派生数据右侧选择删除…-按钮.

永远不要忘记普遍有用的提示:重新启动计算机并再试一次.

祝好运!

相关文章

/** C+⬑ * 默认成员函数 原来C++类中,有6个默认成员函数: 构造函数 析构函数 拷贝...
#pragma once // 1. 设计一个不能被拷贝的类/* 解析:拷贝只会放生在两个场景中:拷贝构造函数以及赋值运...
C类型转换 C语言:显式和隐式类型转换 隐式类型转化:编译器在编译阶段自动进行,能转就转,不能转就编译...
//异常的概念/*抛出异常后必须要捕获,否则终止程序(到最外层后会交给main管理,main的行为就是终止) try...
#pragma once /*Smart pointer 智能指针;灵巧指针 智能指针三大件//1.RAII//2.像指针一样使用//3.拷贝问...
目录<future>future模板类成员函数:promise类promise的使用例程:packaged_task模板类例程...