views:

22

answers:

1

i have a view in which i have tabel view and i want to set up a text scrolling from left to right in the bottom of my main view ,....

what abt if i am select navigation bar for solve this purpose? can any suggest which i have choose to solve this....

any suggestions appreciated

A: 

You can insert footer into UITableView (simple UILabel with transparent background). In Interface Builder just drag UILabel control on UITable bottom.

Or you can make it in code:

- (NSString *)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
   return @"My footer text";
}
Victor