如何在 iPhone 应用程序中捕获 sigpipe?
我如何在 iphone/objective-c 中捕获 sigpipe?
谢谢
How can i catch sigpipe in iphone/objective-c?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我如何在 iphone/objective-c 中捕获 sigpipe?
谢谢
How can i catch sigpipe in iphone/objective-c?
thanks
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
第一个答案不起作用。
另外,我正在尝试使用第二篇文章的参考中描述的解决方案:
但此代码也不起作用。 有人知道这个问题的解决方案吗?
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?
测试 SigPipeHandler 的一个重要事实是:
对我来说,连接调试器后它不起作用。 因此,当直接从 XCode 运行应用程序时,不会调用 Handler。
同时,在没有附加调试器的设备上,处理程序按预期工作。
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.
使用旧的良好 POSIX 代码:
在某个地方(main.m?)进行初始化
Use old good POSIX code:
Init in some place (main.m?) with
尝试按照此处记录的方式设置 SO_NOSIGPIPE:
如何防止 SIGPIPE(或正确处理它们)
Try setting SO_NOSIGPIPE as documented here:
How to prevent SIGPIPEs (or handle them properly)
第一个答案效果很好。 但您应该将所有内容都放在
main.mm
文件中。在
静态类(Singleton)
中,它也有效。The first answer works fine. but you should put every thing in the
main.mm
file.And in
static class(Singleton)
, it also works.