What would be the mechanism behind twitter iPad application? I feel its having split viewcontroller, viewcontrollers with animation and gesture controls, or there may be scrollviews for endless scrolling. How can I develop same UI for my application?
Asked
Active
Viewed 2,362 times
3 Answers
5
Hey, here our is a demo project which is inspired by Twitter-ipad app
its source code is opensource on githib (link posted in above blog).
hope that help u to understand the concept behind it !!

Reefaq
- 762
- 12
- 21
-
1Yep, that's a great one, I'm glad you mentioned it because I was returning to update my answer to redirect to your work. There's a few good forks of the project too. There's one in particular that adds icons to the cells/"tabs". Right now, I'm trying to work out how to build in persistence of the view hierarchy. – Greg Combs May 23 '11 at 21:52
-
1@Martin i guess site is under maintenance. anyways you can go directly to github link here https://github.com/raweng/StackScrollView/ – Reefaq Jul 04 '12 at 11:33
2
Matt Gammell ... He did a draggable split view. Its the closest i can think of may be configurable to emulate that http://github.com/mattgemmell/MGSplitViewController

Greg Combs
- 4,252
- 3
- 33
- 47
0
I believe it is just a scroll view with enabled paging, that moves it's subviews on scrollViewDidScroll
, does some additional animation in scrollViewDidEndScrollingAnimation
method and with some other slick and sexy things :)

Zapko
- 2,461
- 25
- 30