I have a table view displaying few table cells, eg: A, B, C. I also have a button will filter certain cell and display some other cell. Lets say all the cell will use the same instance, although it have been filter or reappear in the table view. It will not initialize again.
The problem is after i click on filter button, the visible cell become A,D,C. when i click on the button on cell "D", the information displayed is belong to "B" which suppose filtered. I tried [table reloadData]; but it still displaying what suppose filtered.
Remarks: The ways i filter is removeAllObject in the tableview, and verify each cell is valid to display on tableview and add each into the tableview again, instead of insert and remove.