I am working on accessing a custom check box which I have already utilized in my project as a custom button, and trying to access it in my table view cell.
Currently, it is prompting the button correctly, and works just fine, except for the case when I scroll my tableview, and then make any further changes on the button (either checkin, or checkout), the button image will overlay the older image and not update the draw.
I am just curious, is there any fix for this?
My code looks something like this:
my code for cellForRowAtIndexPath looks like this:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"CustomTableCell";
CustomTableCell *cell = (CustomTableCell *)
[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
[[NSBundle mainBundle] loadNibNamed:@"CustomTableCell"
owner:self options:nil];
cell = tableCell;
self.tableCell = nil;
}
CheckBox *chkBox = [[CheckBox alloc] init];
chkBox.frame = CGRectMake(10.0, -10.0, 50.0, 70.0);
[cell.contentView addSubview:chkBox];
[chkBox release];
cell.modelLabel.text =
[[[[[self regData] ShoppingCart] objectForKey:@"Cart"]
valueForKey:@"Model"] objectAtIndex:indexPath.row];
// Configure the cell...
return cell;
}
I haven't implemented the didSelectRowAtIndexPath method yet as that method is suppose to take the viewer to newer screen with more information.