Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7795685
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:08:27+00:00 2026-06-01T23:08:27+00:00

I have made a viewController programmatically and I want to force it to rotate

  • 0

I have made a viewController programmatically and I want to force it to rotate whenever the device is rotated .
in simple viewController you create using the normal way by adding a new file and so there a “shouldAutoRotate” method ..
but in my case it’s different especiall that I create this viewController in a viewController!

and I don’t want to create a new viewController.

this is the code I used to create the viewcontroller

UIViewController *featuresViewController = [[UIViewController alloc]initWithNibName:@"featrures" bundle:nil];
[featuresViewController setView:[[UIView alloc]initWithFrame:CGRectMake(10, 10, 380, 450 )]];
[featuresViewController.view setBackgroundColor:[UIColor clearColor]];

featuresViewController.modalTransitionStyle = UIModalTransitionStylePartialCurl;      

featuresViewController.modalPresentationStyle = UIModalPresentationPageSheet;
[self presentModalViewController:featuresViewController animated:YES];
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T23:08:29+00:00Added an answer on June 1, 2026 at 11:08 pm

    Easier to add this as another answer…

    Probably not the best place to do this, but if you’re struggling on how to code your FeaturesViewController, it’ll be something like this –

    .h –

    #import <UIKit/UIKit.h>
    
    @interface FeaturesViewController : UIViewController {
        // ivar declarations...
    }
    
    @end
    

    .m –

    #import "FeaturesViewController.h"
    
    @implementation FeaturesViewController
    
    -(id)init {
    
        self = [super initWithNibName:@"FeaturesViewController" bundle:nil];
    
        if (self) {
            // other init stuff
        }
    
        return self;
    
    }
    
    
    -(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
        // return YES for whatever orientations you want
        return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
    }
    

    Then in your main VC, present it like this –

    FeaturesViewController *featuresViewController = [[[FeaturesViewController alloc] init] autorelease];
    
    featuresViewController.modalTransitionStyle=UIModalTransitionStylePartialCurl;      
    featuresViewController.modalPresentationStyle=UIModalPresentationPageSheet;
    
    [self presentViewController:featuresViewController animated:YES completion:nil];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have made an application using Java/Hibernate/MySQL, but whenever I try running it, it
I have made a ViewController in XCode for an iPhone project I'm working on,
I have made an application (for my self) for feeds reading, using SyndicationFeed ,
I have made a multiplayer game using the GameKit Framework where 2 iPhones/iPods can
I have made a java project and want to deliver it to a client
I want to access the current ViewController. I have a TabBar with a NavBar
I have made a very simple NSObject: GameSetUpData.h @interface GameSetUpData : NSObject @property (readwrite,
I have a balloonGameViewController.h and another class I made called balloon.h I want to
I have made a simple app to try a nut out the problem; this
I have made a kind of Video Slider, where thumbnail of videos are displaying

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.