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.
在我的软件中,它具有以下功能
- (oneway BOOL)saveDocument:(INJDocument *)document
我不明白oneway Bool。你能解释一下“oneway Bool”是什么意思吗?我们应该什么时候使用它?
oneway Bool
oneway 与分布式对象 API 一起使用,它允许在不同线程或应用程序之间使用 Objective-C 对象。它告诉系统在方法返回之前它不应该阻塞调用线程。没有它,调用者将阻塞,即使方法的返回类型是 void。