I am using the titlesForSpecifier feature to feed titles into IASK dynamically. My titles array needs to be refreshed when another setting change.
e.g. list of state code for selection needs to be refreshed if user changes the country code.
Any ideas?
Reading the code it should be fine to reset the
multipleValues
property of your specifier tonil
. That should trigger reloading the titles from the delegate. Now to makeUITableView
refresh the cells, either usereloadData
orreloadRows(at:with:)
.