So I have the following:
- A UITableView with deletable cells (the kind where you swipe the cell then click the delete button)
- The UITableView’s properties (eg. a UILabel) are automatically updated (with a
reloadDatacall on the UITableView) every second by a NSTimer (this is required)
The problem is that the reloadData call clears the delete button after swiping (within a second of course). How can I keep this from happening?
Thank you!
All I need to do was to set the UILabels text property from the NSTimers invocation method call and it doesn’t even require a
reloadDatacall to update the UILabel…