I'm certain this has been asked before, probably even by me...but searches didn't come up with anything quickly:
Is it possible to get the pythonista ui widget object back from the objc instance object?
So, for example, if I'm in a python function which is called from objective-c, and therefore only has access to the ObjCInstance of the widget, is there a way to retrieve the python widget object?
My initial sense is no, it isn't possible. ui.View objects are not weakreference-able, so I can't stash a weakref in the objc instance pointing back at the python instance, and I'm not sure if storing a strong reference to the python object would cause a nasty garbage-collection-breaking loop.