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.
我正在使用 CoreAnimation 在 C++ 中进行编码。
在 Objective-C 中,CALayer 实例是使用 [CALayer layer] 消息调用创建的。
如何在 C++ 中创建 CALayer 实例?
您应该使用 Objective-C++(为您的文件提供 .mm 扩展名)。然后它也只是[CALayer layer]。否则,必须使用基于 C 语言的 Objective C 运行时,非常麻烦。
[CALayer layer]