I need to create a UITableView
with section, and I have values like bellow:
let sectionTitles = ["section-1", "section-2", "section-3"]
let Items = [["id": 100, "name":"jim", "family": "rason"],["id": 200, "name":"jim22", "family": "rason22"], ["id": 300, "name":"jim33", "family": "rason33"]]
And:
section-1
is for ["id": 100, "name":"jim", "family": "rason"]
section-2
is for ["id": 200, "name":"jim22", "family": "rason22"]
section-3
is for ["id": 300, "name":"jim33", "family": "rason33"]
How can I create a model for it and I fill this model?
Is any online web site for create model?