UITableView UITableViewCell not reloading on reloadData
- by David van Dugteren
This question has been asked a few times now, but there exists no answer on the web that has solved the problem for me yet...
See the code:
{
const NSInteger TOP_LABEL_TAG = 1001;
static NSString *CellIdentifier = @"CellIdentifier";
UITableViewCell *cell = [theTableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
…