I am working with a UICollectionView that displays fewer items than necessary to fill the whole screen. With this setting, the view simply does not scroll (move and bounce), when I add like 20 items it works.
How can I force the collection view to scroll, without enough items to fill the screen?
http://bytolution.com/Screenshot%202013.04.17%2021.57.00.png
Thanks for your help!
BTW I already tried to set the contentSize (e.g. to {320 , 1000}) but it still does not work.
Try to set
alwaysBounceVertical
property toYES
:The default value is
NO