I've ran my application and got this error (see screenshot). Running my program again just crashed the Pythonista.
I've been expecting such issues for a while now. Probably some problems with the new UI module? Or maybe some bug in the module loading?
The Code:
import ui
view = ui.View()
table = ui.TableView()
table.flex = "WH"
table.data_source = ui.ListDataSource(["tableview.py", "items"])
nav = ui.NavigationView(table)
nav.flex = "WH"
view.add_subview(nav)
view.present("sheet")
Screenshot:
