Is an app displaying a (very) big number of views suited for SwiftUI?
I’m writing an app resembling PureData or Blender’s node editor : boxes on screen with inlets and outlets that can be connected with cables.
With some objects on screen, the app stays reactive. It however becomes very laggy when I try to put lots of objects, and I’m wondering if SwiftUI has problems to keep up because there are too many views (or maybe the views are refreshed too often).
Would the project maybe be better suited for something else (AppKit, qt) to get better performances ?