while i am scrolling my table view gets moving upwards .. i hav created table view programmatically without using IB so i should able to fix the position of table view while scrolling also... how to do this.. any suggestions appreciated..
A:
Do you mean you dont want the table to scroll at all? If so then this should do it.
tableView.scrollEnabled = NO;
octermircty
2010-08-26 19:34:18
A:
Are you embedding a UITableView in a UIScrollView? It sounds like it. Don't. UITableView is already a subclass of UIScrollView and supports scrolling on its own.
David Liu
2010-08-26 22:19:24