hi, i have an empty tableview and i add rows at runtime.
My question is: how can i save all the rows inserted with relative data? so if i close and reopen the app i will find the rows i inserted before with all relate data? Thanks
2 Answers
Accepted Answer
You can use file system or database to store your custom run-time rows data. when you reopen the windows you can load them from your store.
when you insert your data to tableview put a button with title: "save data", and on click event with for() iterate all rows and save to local database or any store where you can reach.
Use database to store and retrieve table view row values.
Your Answer
Think you can help? Login to answer this question!