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

The Archive Base Latest Questions

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

Hey I have been looking all over the internet and this site for hours

  • 0

Hey I have been looking all over the internet and this site for hours and nothing has come up which can solve my problem. I am very new to iPhone programming so I am sorry if this question seems too nooby. I am attempting to add a UITableView into my main view controller (part of a view-based application), and then populate its cells with strings from an array (which I already have set up). I have tried cutting and pasting the code from a default navigation based app, yet that doesn’t work because the view-based app doesn’t know how to react to the code. My question is how should I go about populating the table (which I dragged into the xib) with the array I made? ANY help is GREATLY appreciated. Thanks in advance!

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

    In SomeSubclassOfUITableViewController.m

    First, implement the delegate methods:

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section 
    {
        return [_myStrings count];
    }
    
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;
    }
    

    Then assign titles/subtitles/etc.

    - (UITableViewCell *)tableView:(UITableView *)tableViewcellForRowAtIndexPath:(NSIndexPath *)indexPath 
    {
        static NSString *identifier = @"TableCellIdentifier";
    
        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
        if (!cell) {
            cell = [[UITableViewCell alloc]
                     initWithStyle:UITableViewCellStyleDefault
                     reuseIdentifier:identifier];
        }
    
        cell.textLabel.text = _myStrings[indexPath.row];
        return cell;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey all, I have been doing nothing but web development over the last few
Hey all. Something which has been bugging me quite a bit recently is this
Hey guys i have a question which i have been looking for the answer
Hey all, i have been trying for a few minutes on this problem and
Hey all. I've been looking for a while for something that can help me
hey all i am stumped by this query and have thought it over and
Hey i have been looking around and i cant find a way to get
hey people I'm new at jquery and i have been trying to figure this
Hey this might be a simple question, but i have been stumped on it
Hey all i have a JSFiddle that i have been working on with trying

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.