Look into an affine rotate (CGAffineTransformMakeRotation) and the 'transform' propery on views. Basically you create the appropriate transform and set it on the view (note the angle is expressed in radians):
textView.transform = CGAffineTransformMakeRotation( 90 * (M_PI/ 180)); that's from memory, so read up on the docs to confirm. rjf& On Dec 27 2008, 7:25 am, Erin Scott <[email protected]> wrote: > I have a project I am developing and it is entirely in landscape. The > problem is one section needs to have several paragraphs in it and I > can only get the Text View to be vertical, which obviously is a mess > in landscape mode. I have a feeling the solution will be very easy but > it has eluded me so far... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "iPhoneWebDev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/iphonewebdev?hl=en -~----------~----~----~----~------~----~------~--~---
