How can i catch sigpipe in iphone/objective-c?
thanks
|
How can i catch sigpipe in iphone/objective-c? thanks
| |||
|
feedback
|
|
Use old good POSIX code:
Init in some place (main.m?) with
| |||||
feedback
|
|
Try setting SO_NOSIGPIPE as documented here: http://stackoverflow.com/questions/108183/how-to-prevent-sigpipes-or-handle-them-properly | |||
|
feedback
|
|
One important fact for testing the SigPipeHandler: For me it did not work when the debugger was atached. So when running an app directly from XCode the Handler is not called. Meanwhile, on a device without the debugger attached the handler works as expected. | |||
feedback
|
|
The first answer doesn't work. Also I'm trying to use solution described in reference of second post:
but this code doesn't work too. Anybody know solution of this problem? | |||
|
feedback
|
|
The first answer works fine. but you should put every thing in the main.mm file. And in static class(Singleton), it also works.
| ||||
|
feedback
|