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.
我有一个线程类(C++)实例正在运行。当线程完成其操作时,我想与我的 UIView 对象之一(Objective-C)进行通信。这可以通过代表来实现吗?
是的,为什么不呢?
在 Objective-C++ 模式(.mm 文件扩展名)下编译时,您可以自由混合 Objective-C、C 和 C++ 代码、类和对象。
只要确保在主线程上执行任何 GUI 东西。