Jeff Lindsay
Jeff Lindsay
I have not had time to reproduce, can others? Anybody have ideas on what this could be?
Yea, there is some simplicity to just assuming objects, esp since most of the APIs are just returning objects. In a way, letting the caller decide to Release gets around...
We could say that Go GC integration via finalizer is only done with wrapped/generated code and do it there and not at the `objc` package level.
very cool find, i was wondering what benefits we'd get from putting more wrapper code in embedded obj-c and I guess this is one of them. sort of eliminates the...
Oh wow. Yeah, maybe this calls for a `NSInvocation` wrapper implemented in the style we'd use for code generation (to try it out on something real) and see if we...
first, awesome! this'll be rad. we haven't added enums yet, but our workaround is to just find out their value and use it directly. let me know if you'd want...
You might just need to make sure the frameworks are included. See this line for example: https://github.com/PumpkinSeed/macdriver/blob/main/cocoa/cocoa_objc.gen.go#L11
Right you are, I’m not going to be able to do that anytime soon so hopefully somebody else will take a swing at an M1 implementation for variadic.
missing files from build constraints for diff platforms is part of it, but afaik the differences are minimal. the real missing piece is the implementation of the workaround in `variadic`...
@dolmen awesome, thank you for making it easy to find from here