I have a requirement which lists the Cricket players in a table view with thier names and their stats like the following
HTML Code:
Name total 4's 6's 1's average
Tendulkar 231 O 6 5 3.6
Gangully 212 9 0 8 4.5
Etc .....
the total number of stats is like 8 to 10 , for that I have to make the stats horizantally scrollable, freezing the name. Can anyone explain me how to acheive this in a table view
__________________
Listen to Bollywood music on your iPhone - Tandora Radio
Listen to your favorite radio channels in your iPhone - MuseBox Radio
I don't think that UITableViews are meant to be a substitute for a standard grid view, so this UI you are proposing would probably be very clunky and confusing for the user. You should find some other way the display the data in the tableview rather than horizontally scrolling.
I don't think that UITableViews are meant to be a substitute for a standard grid view, so this UI you are proposing would probably be very clunky and confusing for the user. You should find some other way the display the data in the tableview rather than horizontally scrolling.
Thanks for your response, I have seen several apps in app store implement this beautifully, please try using Fantasy monster application(can check this out only if you have a nfl fantasy player in yahoo). But just wanted to let you know that its possible to do that, Just don't know how :-) .
Thanks for trying to help
__________________
Listen to Bollywood music on your iPhone - Tandora Radio
Listen to your favorite radio channels in your iPhone - MuseBox Radio
Ah, I didnt say it wasn't possible, I was just implying that if you did implement it, you would have to be very careful about how you did it. It's nice to know that some other apps have done this successfully. Can you post some screen shots from those apps?
After looking at the video, I don't think they are using a table view at all. Just a scrollview for vertical scrolling, with multiple sub-scrollviews to scroll the horizontal contents for each section.
Edit: The screen I'm looking at has all the players with a bunch of stats. It's called "My Lineup"
Last edited by smithdale87; 09-13-2011 at 03:42 PM.
After looking at the video, I don't think they are using a table view at all. Just a scrollview for vertical scrolling, with multiple sub-scrollviews to scroll the horizontal contents for each section.
Edit: The screen I'm looking at has all the players with a bunch of stats. It's called "My Lineup"
Is there any example for the approach you mentioned. please share.
__________________
Listen to Bollywood music on your iPhone - Tandora Radio
Listen to your favorite radio channels in your iPhone - MuseBox Radio
It's not that hard. Give it a try. All you need are a few nested scrollviews, a big one for vertical scrolling, and one or several as subviews of that scrollview for the horizontal scrolling. If you've worked with one scrollview you'll be fine with several.