3lvis / DATASource

Core Data's NSFetchedResultsController wrapper for UITableView and UICollectionView
Other
106 stars 27 forks source link

UITableVIew swipe trailingSwipeActionsConfigurationForRowAt not working #114

Closed mperovic closed 5 years ago

mperovic commented 6 years ago

After implementing DATASource on my UITableView new iOS 11 UITableView Swipe action not getting called. Other delegate and datasource are working fine. For example tableView:didSelectRowAt works perfectly.

3lvis commented 6 years ago

Hi @mperovic,

Strange issue. I'll see if I can have a look :)

mperovic commented 6 years ago

Just forgot to mention tableView:leadingSwipeActionsConfigurationForRowAt also does not work.

mperovic commented 5 years ago

Found what was problem. It was my mistake. Forgot to return true from dataSource:tableView:canEditRowAtIndexPath:

3lvis commented 5 years ago

Thanks for the update, Miroslav!