You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you please guide me how can i disable scrolling for specific table view cell. I want to enable/disable specific cells in tableview. Please let me know, is there any way to do that? I will be very thankful to you.
The text was updated successfully, but these errors were encountered:
You can prevent certain rows from being reordered by implementing the tableView(_:canReorderRowAt:) method in your reorder delegate, and returning false for those rows.
tableView(_:canReorderRowAt:) method is good for not allowing source cell to be moved.
But is there a way to disable dropping the cell at a certain destination IndexPath?
Can you please guide me how can i disable scrolling for specific table view cell. I want to enable/disable specific cells in tableview. Please let me know, is there any way to do that? I will be very thankful to you.
The text was updated successfully, but these errors were encountered: