17

I am using XCode 5, with an iPhone 5s as the dev device. Every other time I run the app I get a pop that says "Could not launch [app name] \n busy". My iPhone 5s then appears to crash and the only way it will respond is if I hold the home and lock button until it resets.

The application is a single view application, the only thing I have done is added the Parse.framework from here and used

[Parse setApplicationID:appID clientKey:clientKey];
[PFAnalytics trackAppOpenedWithLaunchOptions:launchOptions];

In applicationDidFinishLaunchingWithOptions, along with some UI that isn't hooked up to anything.

I'm not sure if this has to do with Parse or possibly the App settings.

So to be clear, the behavior is:

Fresh reset > Build and Run application on iPhone 5s > application runs fine > Build and Run application on iPhone 5s > application appears to launch but screen remains black and iPhone is no longer responsive except the screen will turn off when the lock button is pressed (but not back on) > Build and Run application on iPhone 5s > XCode says "could not launch app - busy" > hard reset iPhone

When I run this on the 64-bit simulator it works fine.

Edit 1:

I have tested with multiple applications now that we know work on multiple other devices (iPhone 5, iPhone 4, iPhone 4s) and the simulators. I don't have another iPhone 5s so it is hard to compare exactly but everything crashes my 5s..

4

5 に答える 5

10

私のデバイスは黒い画面で完全に動かなくなりました。「問題を解決するには、ハード リブートする必要があります。電話が再起動するまで電源ボタンとホーム ボタンを押したままにします。電話にあるデータは失われません (初めて実行したときは心配でした)。」ここで述べたように:

http://blog.paulhadfield.net/2014/01/iphone-hangs-when-running-from-xcode.html

iPhone7 の場合、別のアプローチがあります。

  1. iPhone 7 の右側面にある電源ボタンを長押しします。
  2. 電源ボタンを押しながら、iPhone 7の左側面にある音量ダウンボタンを押し続けます。

http://www.hongkiat.com/blog/force-reset-iphone7-7plus/

于 2014-03-06T18:54:29.363 に答える
0

同じ問題があり、Xcode 5.0.2 にアップグレードすると解決しました。

于 2014-01-12T12:19:39.190 に答える
0

私は何度か同じ問題を抱えています。この問題は、iCloud または他のバックグラウンド アプリが実行されていて、デバッグしていたアプリが既に実行モードになっている場合に常に発生するようです。

私の提案は次のとおりです。デバッグ時にバックグラウンドで実行されているアプリを避け、デバッグを再開する前にアプリのデバッグが完全に終了していることを確認してください。

iOS 7 + Xcode 5 の明らかなバグです。

于 2013-12-09T02:38:33.203 に答える