I have an UILabel in a custom cell class in an UITableView and I use the following code to increase the width of the label dynamically in regards of its content:
CGSize sizeToMakeLabel = [cell.cellResult.text sizeWithFont:cell.cellResult.font];
cell.cellResult.frame = CGRectMake(cell.cellResult.frame.origin.x, cell.cellResult.frame.origin.y, sizeToMakeLabel.width, sizeToMakeLabel.height);
The problem that appears using the above code, is that I can no longer have the label to be right aligned (increase the width of it to the left instead of right).
If I don't use the above code and set alignment to right in IB, the alignment works. But in this case, I lose the dynamic width.
I've tried with:
cell.cellResult.textAlignment = UITextAlignmentRigth;
cell.cellResult.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
but nothing happens.
Can someone help me out on this one please ?