Marshall
Marshall

Reputation: 151

How to save tableview cell to UserDefaults and then show it

How can i save tableview cell to UserDefaults
I want make favorite page
When i click star button, cell must save on UserDefault
Please help me
I dont found good info about it

enter image description here

Upvotes: 0

Views: 75

Answers (1)

Shehata Gamal
Shehata Gamal

Reputation: 100503

A cell subclass shouldn't be saved or archived , you need to save the model corresponding to the indexPath of this cell like when the cell is selected you do

let item = arr[indexPath.row]  // here save item

After that you load that item and show it again in that table cell

Upvotes: 2

Related Questions