Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 NSPipe 通道实现两个应用程序之间的通信。一个 NSPipe 必须写入数据,另一个必须读取数据(双向),这将在两个不同应用程序中的单独进程之间进行通信。
例如,c# 中的此类事情可以通过 NamedPipeClientStream、NamedPipeServerStream 类轻松完成,其中管道由 id 字符串注册。
任何建议如何在Objective-C中实现它?
关于,瓦迪维卢