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

matlab - How to equate a structure array to structure array -

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -