0

Is it possible to make a view move either to the left or right in the iPad, when I tap on a button, instead of actually swiping on the view.

This can be seen in the iPad when I'm in the screen after the search screen, and I install an app, the screens move to the left by itself and the app sits in the right place and starts installing.

Any suggestion will help.

Breakpoint
  • 1,511
  • 1
  • 18
  • 41

1 Answers1

2

The home screen is actually a UIScrollView with paging enabled. So it just moves to the next page (with scrollRectToVisible) if a new app is installed. So if you want to have something like that, I guess you have to implement a paging UIScrollView. Just search for that and you will find a lot of good tutorials.

Some further resources:

stakx - no longer contributing
  • 83,039
  • 20
  • 168
  • 268
NDY
  • 3,527
  • 4
  • 48
  • 63