I have a pretty large list of \'items\' (up to 250 entries) which is constantly changing. The list is being displayed in a UITableView.
I have a polling thread that
Will it help if you do a [ myTable performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO] ?
[ myTable performSelectorOnMainThread:@selector(reloadData) withObject:nil waitUntilDone:NO]
The problem you mentioned can arise if you do not action your GUI updates from the main thread.