Hello, is there any way to use extension functions...
# multiplatform
s
Hello, is there any way to use extension functions from kotlin on swift??, for example
Copy code
fun UIViewController.hello() { println("Hello from kotlin") }
r
you can use them, but like static funtions
Copy code
hello(viewControler: UIViewController)
👍 1