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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T05:22:29+00:00 2026-06-16T05:22:29+00:00

I am just starting on Objective-C and XCode today. I’ve made a NSMutableArray containing

  • 0

I am just starting on Objective-C and XCode today.

I’ve made a

NSMutableArray

containing a bunch of strings.

I am looping through my array like this:

for (NSString *test in array) {
}

Now, how do I manage to show each of these values on the screen, standing underneath each other? I am not sure which UI element would be proper, and how to actually use that element (I don’t know what element it is yet, but I only have knowledge on TextField, Button and Label so far).

  • 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-16T05:22:31+00:00Added an answer on June 16, 2026 at 5:22 am

    Use a UILabel and set numberOfLines to 0 to have infinite lines.

    UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 300, 200)];
    myLabel.numberOflines = 0;
    [self.view addSubview:myLabel];
    
    NSString *testText = @"";
    for (NSString *test in array) {
        testText = [testText stringByAppendingFormat:@"%@\n", text];
    }
    myLabel.text = testText;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im just starting getting into Objective-C, i'm trying to sort an array so it
I'm just starting with Objective C and xcode. I've been exploring NSUserdefaults. I can
I am just starting out with Objective-C but have done a bunch of C++.
I'm just starting to teach myself objective-c and attempting to learn the cocoa touch
I'm just starting Objective C after being pampered with Applescript, and I can't seem
I'm just starting to teach myself Objective C and have been fooling around with
I'm just starting to learn objective-C and iOS development and I've ran in to
I am just starting off with Objective-C and iphone app dev, i'm trying to
Just starting out in Objective-C, so I'm curious as to how some apps that
I'm just starting with the xcode business and so far so good, except for

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.