I’m trying to draw mirrored (as in, it looks like you held it up to a mirror) text, and I want to do it the easiest way possible.
It is possible to do a transform on a UILabel? Or do I have to use Quartz and do CGContextShowTextAtPoint() ?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can apply a transform to the layer:
[view setTransform:CGAffineTransformMakeScale(-1.0f, 1.0f)]but you will need a Ph.D. in horribleness.