iphone - how to display a text on to to my view below my tabel view ,that single line text must be scrolling -


I have a view in which I have a table view and I want to scroll text from left to right Main view, ....

Am I opting for the navigation bar to solve this objective? Is there any suggestion that I have chosen the option to solve it ....

Any suggestions appreciated

You can insert footers in UITableView (simple UILabel with a transparent background). In the interface builder, simply drag UIPB to UITBl down.

or you can create it in code:

  - (NSString *) Table view: (UITableView *) Table view title ForFooterInSection: (NSInteger) section {Back @ "My footer"; }  

Comments