Open sedwo opened 5 years ago
Eureka was thought primarily for smaller forms (think of a Settings form) and not long lists of rows. For example, Eureka does not reuse cells which can also be a problem with many rows. We recommend using a simple UITableView for such cases.
What we would have to implement in Eureka to improve this is either a function to "evaluateHidden" an array of rows and possibly call that function on all rows that depend on the same value. For example, in your case you could make all rows depend on the value of the searchBar if that is also a row in the Form
Using Eureka v5.1.0
I've implemented a
UISearchController
in my VC which works with Eureka like this:For small lists, ~50 rows, the performance does well enough. But once I hit several hundred rows, the user experience breaks down and forces me to put up a spinner while Eureka processes its
row.evaluateHidden()
UI. 😢What optimization can be done to alleviate this bottleneck such that Eureka improves its performance with larger forms of rows?