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

  • SEARCH
  • Home
  • 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 9028579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T07:01:12+00:00 2026-06-16T07:01:12+00:00

I wanted to use a Container View to initiate another view controller, but I

  • 0

I wanted to use a Container View to initiate another view controller, but I can’t see to find any information on how to alloc it programmly. I can do it from the user interface, but if I want to create one with the coes, and link it up to a UIviewController, how can I do that? Does it behave like a normal UIview?

  • 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-16T07:01:13+00:00Added an answer on June 16, 2026 at 7:01 am

    If I follow your question, you’re asking how to use view controller containment in code. I’d suggest checking out Creating Custom Container View Controllers section of the View Controller Programming Guide, which shows you code for doing this, including adding a child view controller:

    [self addChildViewController:content];                 // 1
    content.view.frame = [self frameForContentController]; // 2
    [self.view addSubview:self.currentClientView];
    [content didMoveToParentViewController:self];          // 3
    

    When using child view controllers (at least ones that don’t take up the whole screen), it’s useful to have a UIView on the parent view controller’s view, that dictates the boundaries of the child view controller. It greatly simplifies a bunch of tasks. In the above code snippet, they’re assuming that the subview is called frameForContentController.

    Or removing one (in this code snippet, content is the UIViewController * that references the child controller being removed):

    [content willMoveToParentViewController:nil];  // 1
    [content.view removeFromSuperview];            // 2
    [content removeFromParentViewController];      // 3
    

    And if you want to replace a child controller with another child controller:

    - (void) cycleFromViewController: (UIViewController*) oldC
                    toViewController: (UIViewController*) newC
    {
        [oldC willMoveToParentViewController:nil];                        // 1
        [self addChildViewController:newC];
    
        newC.view.frame = [self newViewStartFrame];                       // 2
        CGRect endFrame = [self oldViewEndFrame];
    
        [self transitionFromViewController: oldC toViewController: newC   // 3
              duration: 0.25 options:0
              animations:^{
                 newC.view.frame = oldC.view.frame;                       // 4
                 oldC.view.frame = endFrame;
               }
               completion:^(BOOL finished) {
                 [oldC removeFromParentViewController];                   // 5
                 [newC didMoveToParentViewController:self];
                }];
    }
    

    I’d also suggest checking out WWDC 2011 – Implementing UIViewController Containment.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I recently wanted to use boost::algorithm::join but I couldn't find any usage examples and
I know I could simply use a container div in this situation, but wanted
I wanted to use 6 different textures on a cube, one per side, but
I wanted to use full import names in my project (see this question ).
I wanted to use winreg module of python for working with windows registry. But
I wanted to use full width stripe on my footer, but aparently it doesen't
I wanted to use find to find every file in a directory that starts
I wanted to use JET (Java Emitter Templates) in my Netbeans projects, but had
I wanted to use monotouch, but unfortunately I don't have $400 to spend. So
I'm using the jcarousel library (http://sorgalla.com/projects/jcarousel/) and wanted to use the vertical carousel, but

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.