Program received signal: “0”. Data Formatters temporarily unavailable

后端 未结 1 1332
我寻月下人不归
我寻月下人不归 2020-12-03 02:03

I\'m working on an iPad app that downloads a CSV file from the web and parses the file into a NSMutableArray. (I\'m using the code from http://www.macresearch.org/cocoa-scie

相关标签:
1条回答
  • 2020-12-03 02:39

    Signal 0 usually (but not always) points to your app being killed for using too much memory.

    Your view controllers should received the memory warning method in a low memory situation, and it is up to you to free up some memory when they arrive. If you don't free any memory and continue to use more memory the app will be forcibly quit.

    The data formatters message in the console relates to the debugger. For some reason the debugger was unable to load the data formatters used to represent the data in the application. probably because the phone didn't have any memory left for them.

    0 讨论(0)
提交回复
热议问题