@mikael @JonB strange, on my iPad mini 4, three different prints and their results
print('VNDocumentCameraViewController.isSupported')
print(VNDocumentCameraViewController.isSupported)
print()
print('dir(VNDocumentCameraViewController.isSupported)')
print(dir(VNDocumentCameraViewController.isSupported))
print()
print('VNDocumentCameraViewController.isSupported()')
print(VNDocumentCameraViewController.isSupported())
'''
VNDocumentCameraViewController.isSupported
<objc_util.ObjCInstanceMethodProxy object at 0x113ca84e0>
dir(VNDocumentCameraViewController.isSupported)
['__call__', '__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'method_cache', 'name', 'obj']
VNDocumentCameraViewController.isSupported()
Traceback (most recent call last):
File "_ctypes/callbacks.c", line 234, in 'calling callback function'
File "/var/containers/Bundle/Application/34BAEE1A-BC33-4D6F-A0C1-B733E4991F31/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/objc_util.py", line 1066, in OMMainThreadDispatcher_invoke_imp
retval = func(*args, **kwargs)
File "/private/var/mobile/Containers/Shared/AppGroup/668A7D98-7216-47ED-917D-AA0B6173167E/Pythonista3/Documents/VNDocumentCameraViewController.py", line 37, in main
print(VNDocumentCameraViewController.isSupported())
File "/var/containers/Bundle/Application/34BAEE1A-BC33-4D6F-A0C1-B733E4991F31/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/objc_util.py", line 798, in __call__
method_name, kwarg_order = resolve_instance_method(obj, self.name, args, kwargs)
File "/var/containers/Bundle/Application/34BAEE1A-BC33-4D6F-A0C1-B733E4991F31/Pythonista3.app/Frameworks/Py3Kit.framework/pylib/site-packages/objc_util.py", line 405, in resolve_instance_method
raise AttributeError('No method found for %s' % (name,))
AttributeError: No method found for isSupported
'''