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 8906963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T02:46:56+00:00 2026-06-15T02:46:56+00:00

I have an odd case — a view controller that creates its own view

  • 0

I have an odd case — a view controller that creates its own view in loadView and which is then added to an existing view.

Here is the code that creates and adds the VC:

self.doneButtonViewController = [[DoneButtonViewController alloc] init];
[self.view addSubview:self.doneButtonViewController.view];

This code is executed in viewDidLoad of the “parent” VC.

The odd thing is that the viewWillAppear method of the added VC is never invoked (nor is viewDidAppear), but the viewWillDisappear method of the added VC is invoked (at the appropriate time), just as one would expect.

Any clue as to why viewWillAppear is not getting invoked?

  • 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-15T02:46:59+00:00Added an answer on June 15, 2026 at 2:46 am

    The application isn’t aware of the subview’s view controller if you do this, you need to introduce view controller containment to make the root view controller aware. Doing so will handle any events like this.

    Because loadView could be called more than once pre iOS 6, I’d advise creating the view controller within init, and then add the subview within loadView. It should be like this:

    - (id)init {
        ...
        self.doneButtonViewController = [[DoneButtonViewController alloc] init];
        [self addChildViewController:self.doneButtonViewController];
        [self.doneButtonViewController didMoveToParentViewController:self];
        ...
    }
    
    - (void)loadView {
        ...
        [self.view addSubview:self.doneButtonViewController.view];
        ...
    }
    

    See “Implementing a Container View Controller” at http://developer.apple.com/library/ios/#documentation/uikit/reference/UIViewController_Class/Reference/Reference.html

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

Sidebar

Related Questions

I have an odd XML document that I have to query. Its from the
I have an odd edge case right now in that a response code from
I have a use case that is odd in nature and I know there
I have an odd problem with Django. I have a set of objects that
I have an odd situation in which I need to modify the position of
I have an odd error that you guys will hopefully be able to help
I have an odd issue while using FlashCS4. I have a textfield that, when
I have an extremely odd problem in my JUnit tests that I just can't
I have an odd case where when I look at the data through my
I have a bit of an odd use-case for a Ruby Enumerable, it seems.

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.