Why UICollectionView scroll to top in ipad if you are at the end of the list and click a popover? -
i have uicollectionview
, when goes long , @ bottom of list, clcik on cell in list , pop on shows up. makes uicollectionview scroll top.
how can stop it. doesn't work:
collectionview.scrollstotop = no;
this looks bad , not sure should cgpointmake(?, ?):
[collectionview setcontentoffset:cgpointmake(?, ?) animated:yes];
i had same problem , solved setting:
[self.collectionview setpagingenabled:no];
Comments
Post a Comment