[Xcode]message sent to deallocated instanceが出た時の対処

こんにちは、ボーノです。
エラー内容の吐き出し方の備忘録。

message sent to deallocated instance XX

下記のようなエラーが出た時。

NewImage

エラーを吐き出させる方法

Product→Scheme→Edit Schemeで、下記のように環境変数を追加する。

  • NSZombieEnabled: YES
  • MallocStackLogging: YES
  • NSDebugEnabled: YES

スクリーンショット 2014 02 08 08 51 23

これで、再度エラーを起こすとより詳細な情報を吐き出してくれる。