Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question

2 Answers

up vote 2 down vote accepted

You can't right align the label because you set its real width for its frame.

If you want it to be dynamic but right aligned, you can do something like:

CGSize sizeToMakeLabel = [cell.cellResult.text sizeWithFont:cell.cellResult.font];

cell.cellResult.frame = CGRectMake(cell.cellResult.frame.origin.x + cell.cellResult.frame.size.width - sizeToMakeLabel.width, cell.cellResult.frame.origin.y, sizeToMakeLabel.width, sizeToMakeLabel.height);
share|improve this answer
Thank you very much ! It worked :D ! In 7 minutes I'll approve this answer as being the correct one ! – codeFi Oct 15 '12 at 13:33

That's because you change the origin of the label when setting it's frame:cell.cellResult.frame.origin.x,

You could change the bounds to manage the width only.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.