Breakpoint
Breakpoint

Reputation: 1541

Swipe without actually swiping in iPad?

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.

Upvotes: 0

Views: 135

Answers (1)

NDY
NDY

Reputation: 3557

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:

Upvotes: 2

Related Questions