Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing subclassing of UIView, how do I do Left and Right text justification using CGContextShowTextAtPoint? thx

share|improve this question

1 Answer

up vote 2 down vote accepted

First of all you need to measure your text using one of [NSString sizeWithFont...] methods. You'll get size Use it's width to place your text in the right point:

pseudocode:

if (justification == Left) {
    //just use CGContextShowTextAtPoint
} else {
    CGSize size = [text sizeWithFont:....];
    CGContextShowTextAtPoint(context, self.bounds.width - size.width,....);
}
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.