I've a problem with a UITableView scroll. In a view controller, I add my tableview and show it with presentModalViewController. The user has to select an item in the tableview before they can continue, and so the code must block waiting the selection. I've used a loop like this:
while (!itemSelected)
{
[[NSRunLoop mainRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
}
It works fine, but the table view doesn't scroll right. When you drag it it's all ok. When you release your finger the table is not redraw. I'm going crazy for this!!!
Please help.