Hi Tarek,
Thanks for your quick reply. Yes, I have been experimenting with putting some custom controls into the
willConfigureCell: method (as an interim measure until the next release of STV). Here is an example of some code which I included:
UILabel *castLabel = [[UILabel alloc] init];
castLabel.text = @"Test Label";
[cell addSubview:castLabel];
However, I have found that when I scroll the table view (and cell reuse kicks-in) that
willConfigureCell: gets called on cells which have already had
willConfigureCell: called causing multiple
castLabels to be added to the cell, as the UILabel code is re-executed. Do you know a way around this issue?
Thanks,
Matthew