Hello there,
There's a view in my application that changes it's position and fixes the view as much as it can when I rotate the phone using the this code:
[super loadView];
self.view.autoresizesSubviews = YES;
self.view.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
but the problem is that it's still leaving some controls out of the screen.
I'd like to know how could I reallocate manually the controls or if I need to load a new view with these controls reallocated.
Thanks a lot for your help.
There's a view in my application that changes it's position and fixes the view as much as it can when I rotate the phone using the this code:
[super loadView];
self.view.autoresizesSubviews = YES;
self.view.autoresizingMask = (UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight);
but the problem is that it's still leaving some controls out of the screen.
I'd like to know how could I reallocate manually the controls or if I need to load a new view with these controls reallocated.
Thanks a lot for your help.
