Я поместил некоторый текст в UITextView. Теперь я хочу, чтобы внутренний текст занимал дополнительное пространство, когда устройство становится горизонтом. Но таким образом только холст заполняет все пространство, а не текст.
// This method is called by NSNotificationCenter when the device is rotated.
-(void) receivedRotate: (NSNotification*) notification
{
UIDeviceOrientation interfaceOrientation = [[UIDevice currentDevice] orientation];
if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
{
self.view.transform = CGAffineTransformMakeRotation(-M_PI/2);
self.view.bounds = CGRectMake(0, 0, 416, 320);