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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T04:58:51+00:00 2026-05-28T04:58:51+00:00

I am in the process of developing an IOS rpg. This game is a

  • 0

I am in the process of developing an IOS rpg. This game is a controlled by a tab bar, and every view controller in the tab bar will have a common “header” that sits at the top of the screen and shows information about the player.

The rest of the screen, however, will show one of many different views. Each view controller will be responsible for showing multiple different “views” underneath the “header” view. In addition, many of these views will need to be scrollable, as they will not fit in the confines of the screen.

Questions:

1)How do you add two views from separate nibs to a single view controller.

2)How do you embed only one of those views in a scroll view.

Thank you.

  • 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-05-28T04:58:52+00:00Added an answer on May 28, 2026 at 4:58 am

    You can load a nib through the loadNibNamed:owner:options: function on a NSBundle. What it will return is an array of all the objects in the nib (the list you see on the left when you create a nib in interface builder). If you’re view is the first item on the list of objects in the nib, then its the object at the 0th index of that array.

    NSArray *objects1 = [[NSBundle mainBundle] loadNibNamed:@"View1Nib" owner:self options:nil];
    UIView *customView1 = [objects1 objectAtIndex:0];
    
    NSArray *objects2 = [[NSBundle mainBundle] loadNibNamed:@"View2Nib" owner:self options:nil];
    UIView *customView2 = [objects2 objectAtIndex:0];
    
    UIScrollView *scroll = [[[UIScrollView alloc] init] autorelease];
    [scroll addSubview:customView2];
    
    [[self view] addSubview:customView1];
    [[self view] addSubview:scroll];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm in the process of developing an android game. I have an activity that
I am in the process of developing a small game in DirectX 10 and
I'm in the process of developing an Android app. I have been able to
i am in the process of developing a seperate java component which will be
I'm in the process of developing a site that will allow players of a
We're currently in the process of developing a web-based application which will require the
I'm in the process of developing a simple 2d grid based sim game, and
I am in the process of developing a Web App for iOS and am
I am in the process of developing website and an app (iOS and Android)
I am in process of developing a small game where a space-ship travels through

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.