Implementing horizontal scrolling in a UITable (row by row) for iPhone?

You have to use scrollview instead of tableview for this case You can make a custom view for each of the news items and can be added to the scrollview.

You have to use scrollview instead of tableview for this case. You can make a custom view for each of the news items and can be added to the scrollview.

The easiest way to do this would be to create a simple UITableView and, inside each cell, create a UIScrollView :) UIScrollView *myScrollView = UIScrollView alloc initWithFrame:CGRectMake(0,0,320,100); myScrollView. Delegate = self; myScrollView. ContentSize = CGSizeMake(2000,100); for(int I = 0; I.

Ah cool I'll have a go with that, I wasn't sure if the scroll view supported that sort of behaviour (noob alert! ) I'll give that a try. Many thanks... – Andi Ching Sep 16 '10 at 13:43 You're welcome; I did the same kind of work, UISCrollView works like a charm.

– Vivi Sep 16 '10 at 15:57.

You can start from this pageControl sample code. It has horizontal scrolling with pages.

I suggest to use three20 classes. There are downloadable from here: https://github. Com/facebook/three20 In sample code you can find horizontally table scroll.

Easy and beatiful! A.

A horizontal swipe on a list is just a gesture, depending on the context, it should do what the user would expect. Given the scenario of a list with 500+ rows, what would you do? Show the first 25 rows with a "Show me more"-Footer?

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions