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 developing the custom application in which view should auto set according to screen orientation.

Note : I am not using nib or xib.

share|improve this question
Increase your accept rate ! – Maulik Sep 28 '12 at 5:44

closed as not a real question by Maulik, Carl Veazey, Luksprog, Ben D, Andrew Sep 28 '12 at 16:00

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

3 Answers

You can set autoresizing options for the view. For example

 view.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
 view.autoresizesSubviews = YES;
share|improve this answer
u forgot to add other margins in autoresizingMask – Prince Sep 28 '12 at 6:12

Try below code may it helps you.

    view.autoresizingMask = UIViewAutoresizingFlexibleTopMargin | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleBottomMargin | UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
share|improve this answer
try to set the corresponding view or frame adjustment in  the following delegate function
  • (void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{

    if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPhone) {
    
        if(interfaceOrientation == UIInterfaceOrientationPortrait ||interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) {
    
            //set iPhone Landscape view here
    
    
        } else {
    
         //set iPhone portrait view here
        }
    
    
    } else {
    
    
        if(interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown) {
            //set iPad Landscape view here
    
    
        } else {
    
    
         //set iPad portrait view here
    
        }
    
    
    }
    

    }

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.