关于 iOS设备真机调度时,设备连接导致的 Device busy问题

1. 设备连接在pc上,developer tool报告设备连接失败,请连接设备,这时拨掉,重新连接一次。


2.正在设备上调试时,切记不要拨掉设备 ,应该点击IDE上的stop按钮来停止否则会带来一系列的问题:

操作: 以iphone为例,如果xcode连接真机且在调试过程中,拨掉真机!

结果: xcode 会经常莫名其妙的占用100% 的资源,然后没响应!

给开发带来很大的麻烦,甚是苦恼,最终抓到了如下的错误:

The iPhone ““xxxx的 iPhone” is currently busy. Quitting now could leave it in an inconsistent state.


解决方案一:

重新安装developer tools  

sudo tmutil disablelocal (optional)
sudo /Developer/Library/uninstall-devtools --mode=all
sudo /Developer-3.2.2/Library/uninstall-devtools --mode=all  (optional)
sudo tmutil enablelocal   (optional)

restart

然后重新安装 xcode

restart

解决方案二:

~/Library/Preferences/com.apple.xcode.plist (不要用xcode打开,用个TextWrangler或者ultraedit之类的打开)

找到 XCKnownRemoteComputers 键值对,删除掉相应的设备



Notes:

结果: xcode 会经常莫名其妙的占用100% 的资源,然后没响应!
细心的话你会发现cpu, 主板超级烫。  device busy!!!

回想俺的第一次把主板和显卡都烧掉了,估计就是这个原因!!!

你可能感兴趣的:(xcode,hang,ios5.0.1,资源占用高,无响应,xcode3.2.5)