Is there a straightforward way to call UIButton.targetForAction in Kotlin IOS?
The signature (in Kotlin) is:
public open external expect fun targetForAction(
action: COpaquePointer? /* = CPointer? */,
withSender: Any?
): Any?
I think I get how I'd hand in a C function pointer, but that doesn't seem to be the case here...?