Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Problem UIScrollView pagingenabled in IOS 3.1.3

I have set paging property of scroll view to 'scrollview.pagingEnabled = YES'. When tested it seems to be working in IOS 4 and above but it is not working on iOS 3.1.3. Can any one help me with this?

like image 602
PgmFreek Avatar asked Feb 17 '11 11:02

PgmFreek


1 Answers

I had this exact same problem! I found that in iOS < 3.2 pagingEnabled=YES only works if bounces=YES which is a bummer. I didn't want bounces to be enabled so in my app I check if iOS < 3.2 and then only enable bounces for those older iOS version.

like image 123
ToddH Avatar answered Nov 14 '22 14:11

ToddH