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

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -