Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Loading custom UIView in UIViewController's main view

I have subclassed UIView and created a NIB that controls the main logic for my application.

Hoping the view will scale nicely, I want to use it for both the iPhone and iPad versions of the app.

On the iPhone the view will cover the full screen. On the iPad the view will cover only part of the screen.

I have read that you shouldn't use UIViewControllers to control only part of the screen. So, I am trying to embed the custom UIView in the main UIViewController's view using IB.

How can this be done?

like image 450
Beav Avatar asked Feb 26 '23 18:02

Beav


1 Answers

After a lot of trial and error I found a solution based on an approach explained in the following question, answered by Brian Webster.

The solution was originally suggested for a Cocoa environment. I hope it is valid in an iOS environment as well.

  1. Create the main view controller with a NIB-file. In the NIB, the File's Owner should correspond to the class of your main view controller.
  2. Create a custom view controller with a NIB-file. In this NIB, the File's Owner should correspond to the class of your custom view controller.
  3. Create a custom view controller property in your main view controller class.
  4. Create an UIView property in the main view controller class. It will hold your custom view controller's view. Define it as an IBOutlet, so it can be linked in the NIB.
  5. Drop a UIView in your main view controller's NIB. Link it to the main view controller's view IBOutlet. It will be used as a placeholder for the custom view.
  6. In the main view controller's viewDidLoad method, load the custom view controllers NIB, determine the custom view's frame size and copy the view in the main view controller's view.

Here is some code:

  • MainViewController.h

    @interface MainViewController : UIViewController {
      CustomViewController *customViewController;
      UIView *customView;
    }
    @property (nonatomic, retain) CustomViewController *customViewController;
    @property (nonatomic, retain) IBOutlet UIView *customView;
    @end
  • MainViewController.m

    - (void)viewDidLoad {
      CustomViewController *controller = [[CustomViewController alloc] initWithNibName:@"CustomViewController" bundle:nil];
      self.customViewController = controller;
      [controller release];
      customViewController.view.frame = customView.frame;
      customViewController.view.autoresizingMask = customView.autoresizingMask;
      [customView removeFromSuperview];
      [self.view addSubview:customViewController.view];
      self.customView = customViewController.view;
      [super viewDidLoad];
    }
    
like image 176
Beav Avatar answered Mar 11 '23 23:03

Beav