views:

108

answers:

1

Dear all,

I am attempting to develop an iphone application which has a tab bar at bottom, a navigation bar at top and below navigation bar is a carousel menu bar, this carousel menu bar is similar to media carousel menu in ipod, but it is thinner and just contain text menu item, which one is on top will be bigger, the others are smaller. but I don't have any solution yet and cannot find out any related instruction in the internet.

Any body help me!

Reference link to CNBC Financial App: http://itunes.apple.com/app/cnbc-real-time/id334125582?mt=8

Thanks!

A: 

The easiest way is to use a UITableView and customize the cells height. Refer to the Table View Programming Guide: http://developer.apple.com/iphone/library/documentation/UserExperience/Conceptual/TableView_iPhone/AboutTableViewsiPhone/AboutTableViewsiPhone.html

Another way is to use a UIScrollView and add subviews (UIViews or UITextView): smaller ones for dividers and larger ones for text items.

Good luck!

rjobidon
Thanks Rjobidon,Thanks for you suggestion, I tried to use scroll view with scroll direction is vertical and tried to create a loop of menu items, but there is not 3D effect.
Son Nguyen