iOS UICollectionView: How to become notified once animation stops if cell is selected through code? -
uicollectionview, being descendent of uiscrollview, sends uiscrollview delegate
scrollviewdidenddecelerating
which convenient notified when scrolling motion, initiated swipe user interaction, stops.
however, if selection of cell invoked through code call to
selectitematindexpath
then scrollviewdidenddecelerating not called.
how can notified selection animation having stopped if select cell through code?
Comments
Post a Comment