在cocoa中,使用nsfilehandle进行串口通信问题
我有一个关于串行通信的软件, 它要使用 cocoa 的 nsfilehandle 在 MAC os=10.5.8 中开发, 测试正常,
但是当MAC操作系统升级到10.6时,程序工作不正常,无法接收nsfilehandle的通知。
这就是为什么,
i have a software about serial communication ,
it to be develop in MAC os=10.5.8 using cocoa 's nsfilehandle ,
test ok ,
but when MAC os upgrading to 10.6 ,the program work no normal, can't receive nsfilehandle's notification .
it's why ,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最可能的答案是您的程序中的某些内容依赖于未定义的行为,并且该行为在 10.6 中发生了变化。
The most likely answer is that something in your program was relying on undefined behavior, and that behavior changed in 10.6.
我使用 NSFilehandle 进行串行通信,依靠 nsfilehandle 通知与 UI 交互,它在 Mac os 10.5.8 上运行正常,但升级到 10.6,我无法收到任何 nsfilehandle 通知,我使用 cocoa 普通类型,为什么有的条件。
i use NSFilehandle to serial communication , dely on the nsfilehandle notification to interact with UI , it run ok On Mac os 10.5.8 ,but upgade to 10.6 , i can't receive any nsfilehandle notification , i using the cocoa normal type ,why have the condition .