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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:46:48+00:00 2026-06-17T21:46:48+00:00

I am writing an app in Objective C. For this project I cannot use

  • 0

I am writing an app in Objective C. For this project I cannot use ARC or storyboards. It should have 6 views. Firstly, the navigation controller shall keep table view (it will contain some data passed in from an array). In the toolbar on the top once the item has been pressed the app should move to second view.

I know that I need to code that in my delegate file, but I a not quite sure what needs to be included. Those were the requirements.

In fact when I run my app it does not show that navigation controller which got table view as my entry view. In the settings I cannot find a checkbox in order to select it and make it an entry view.
Any suggestions?
Best regards

  • 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-17T21:46:49+00:00Added an answer on June 17, 2026 at 9:46 pm

    Best way to use UITabBarController

    Firsts Create all object of UIViewController and UINavigationController in AppDelegate.h file and use following method of AppDelegate.m

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
        self.window=[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds ]];
    
        self.viewCon=[[ViewController alloc] init];
        self.navCon=[[UINavigationController alloc] initWithRootViewController:self.viewCon];
        self.navCon.navigationBar.tintColor=[UIColor blackColor];
        self.viewCon.title=@"First View";
    
        self.fView=[[FirstViewController alloc] init];
        self.FnavCon=[[UINavigationController alloc] initWithRootViewController:self.fView];
        self.FnavCon.navigationBar.tintColor=[UIColor blackColor];
    
        self.fView.title=@"Secound View";
    
        self.sView=[[SecoundViewController alloc] init];
        self.SnavCon=[[UINavigationController alloc] initWithRootViewController:self.sView];
        self.SnavCon.navigationBar.tintColor=[UIColor blackColor];
        self.sView.title=@"Third View";
        .
        .
        // create UIViewController and UINavigationController As you need 
        .
        .
        .
        UIImage *img1=[UIImage imageNamed:@"Australia.gif"];
        self.tbItem1=[[UITabBarItem alloc] initWithTitle:@"First Page" image:img1 tag:1];
        self.viewCon.tabBarItem=self.tbItem1;
    
        UIImage *img2=[UIImage imageNamed:@"Cameroon.gif"];
        self.tbItem2=[[UITabBarItem alloc] initWithTitle:@"Secound Page" image:img2 tag:2];
        self.fView.tabBarItem=self.tbItem2;
    
        UIImage *img3=[UIImage imageNamed:@"Canada.png"];
        self.tbItem3=[[UITabBarItem alloc] initWithTitle:@"Third Page" image:img3 tag:3];
        self.sView.tabBarItem=self.tbItem3;
    
        NSMutableArray *viewArr=[[NSMutableArray alloc] init];
        [viewArr addObject:self.navCon];
        [viewArr addObject:self.FnavCon];
        [viewArr addObject:self.SnavCon];
    
    
        self.tbCon=[[UITabBarController alloc] init];
        self.tbCon.viewControllers=viewArr;
    
        [self.window addSubview:tbCon.view];
    
        [self.window makeKeyAndVisible];
    
        return YES;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a text field in my Objective-C Mac app. This is what I
Writing an iPhone app in Objective-C, I have a date in string form (in
I'm writing an iPhone app in Objective-C with Xcode and I have some Lua
I'm writing an app for OS X (in REALbasic, not Objective-C). I have implemented
I am writing my first lines in objective-c for an iPhone app. This is
This question might seem vague, sorry. Does anybody have experience writing RegEx with Objective-C
I am writing app in Objective C. I have images dropping down the screen.
I'm writing a Cocoa app in Objective C that's communicating with a webservice and
im writing c# app in VS2008 that will use some reports. My question: how
i'm writing an app that needs a calculation support (Fun project). However, is there

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.