7 ms·
There’s a very minimal example using C++ interop in Qt’s test suite: https://github.com/qt/qtdeclarative/tree/dev/tests/manual/helloswift https://github.com/qt
by jclay 2y ago
There’s a very minimal example using C++ interop in Qt’s test suite:
https://github.com/qt/qtdeclarative/tree/dev/tests/manual/helloswift https://github.com/qt/qtdeclarative/tree/dev/tests/manual/he...
I’ve kicked around with the C++ interop a few times. Projects like Qt that use raw pointers extensively seem hard to expose. Ended up having to wrap Qt classes to model as a value type which was straight forward but it’s not nearly as seamless as the Objective-C++ experience
- dagmx 2y agoAh, very cool. Thanks for the link and write up