Hello! I'm making a UITableView by scratch, and am trying to use the constant "UITableViewAutomaticDimension" for the row heights. But I am having trouble accessing it. I have tried using the C function "CFBundleGetDataPointerForName" and the following,
lib = ctypes.CDLL(None)
print(lib.UITableViewAutomaticDimension)
pointer = ctypes.cast(lib.UITableViewAutomaticDimension, ctypes.c_void_p)
print(objc_util.ObjCInstance(pointer))
Any help would be great!