I am creating custom cells and updating some UILabels every time when that view appears.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UILabel *lblFacingValue = nil;
static NSUInteger const kFacingLabelTag = 7;
CGFloat LeftLabelWidth = 130.0;
static NSString *CellIdentifier = @"Cell";
ClientState *clientState = [ClientState sharedInstance];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
if(indexPath.row == 0)
{
lblFacingValue = [[[UILabel alloc] initWithFrame:CGRectMake(246, -11, LeftLabelWidth, (cell.contentView.frame.size.height))] autorelease];
lblFacingValue.font = [UIFont systemFontOfSize:21];
lblFacingValue.textAlignment = UITextAlignmentLeft;
lblFacingValue.backgroundColor = [UIColor clearColor];
lblFacingValue.tag = kFacingLabelTag;
lblFacingValue.textColor = [UIColor yellowColor];
[cell.contentView addSubview:lblFacingValue];
}
}
lblFacingValue.text = [NSString stringWithFormat:@"%@", clientState.Direction];
}
But the problem is that it contains the value which I assign first time and do not update it when I open that view. that view is in tab.
It did not update the value of lblFacingValue and skip the check
if (cell == nil)
after first time. but do not update lblFacingValue.