Hello. When I look through the provided native lib...
# multiplatform
j
Hello. When I look through the provided native libraries I am not seeing a direct 1-on-1 match for constructors. For example,
platform.QuartzCore.CADisplayLink
appears to just have a public constructor with no args. However, there is an init constructor in the swift lib: https://developer.apple.com/documentation/quartzcore/cadisplaylink/1621228-init. How would I go about calling it? Do I need to provide an
actual
implementation? If so, how do I do that since I am not the owner of the class? Thanks in advance! 🙏
NVM, I looked at the ObjC docs and found the equivalent which is a class method instead. Thanks!