0

I have client server application using distributed object. some time my code is working fine but some times i am getting *** NSDistantObject initWithCoder: 7 not given away for conn 0x100124c60 error. and some times my application receiving SIGARRT.

Program received signal:  “SIGABRT”.
            sharedlibrary apply-load-rules all
            Data Formatters temporarily unavailable, will re-try after a 'continue'. (Not safe to call dlopen at this time.)
Parag Bafna
  • 22,812
  • 8
  • 71
  • 144

1 Answers1

0

saw it several times in iOS programming. It was always that I was running out of memory. for leaking or infinitive recursion. see this: Data Formatters temporarily unavailable, will re-try after a 'continue' or Data Formatters temporarily unavailable, will re-try after a 'continue'

"Data Formatters temporarily unavailable, will re-try after a 'continue'." means that something has gone so horribly wrong in your code that even the debugger bailed. As dragyn said, this usually involves some form of rapid object creation or recursion calling. Add a few NSLog lines into your code to help you see how far your code is getting and where it might be looping/calling itself.

from: http://www.cocos2d-iphone.org/forum/topic/7314

Zoe
  • 27,060
  • 21
  • 118
  • 148
vikingosegundo
  • 52,040
  • 14
  • 137
  • 178