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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T14:37:50+00:00 2026-06-06T14:37:50+00:00

Is there a nicer way to fill an array with numbers than what I

  • 0

Is there a nicer way to fill an array with numbers than what I use?
It’s crazy how much I got to write just to fill an array with numbers so they can be used for a calculation in a loop. This is easier in other C based languages like PHP, As3, or Java.

NSArray *myArray = [NSArray arrayWithObjects:  
                    [NSNumber numberWithInt:1000],[NSNumber numberWithInt:237], [NSNumber numberWithInt:2673], nil];

int total = 0;
for(int i = 0; i < [myArray count]; i += 1 ){
    total += [[myArray objectAtIndex: i]intValue];
    NSLog(@"%i", total);
}

Hopefully there is a shorter way… I just want to fill an array with ints… cant be that hard

  • 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-06T14:37:50+00:00Added an answer on June 6, 2026 at 2:37 pm

    I guess you have to use NSNumber for an NSArray. If you want to use ints I guess you’d have to use a c array:

    NSInteger myArray[20];
    
    for (int i=0;i<20;i++) {
      int num=myArray[i];
    
      //do something
     }
    

    NSNumber though is I guess the better approach for this language.
    At least you can do fast enumeration to shorten code a bit:

    for (NSNumber *n in myArray) {
     int num = [n intValue];
    
     //do something....
    
    }
    

    EDIT:

    The question has been asked 3 years ago. There have been new literals established to make it easier to create objects like NSNumbers or NSArrays:

    NSNumber *n = @100;
    

    or

    NSArray *array = @[@100,@50,@10];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a nicer way to write in jUnit String x = foo bar;
is there any other simple,nicer way? require 'pp' a1 = [02/28/10,Webinars,131,0,26 Feb 2010,0,3d, 8h,
Is there a way to write in Visual Studio in nice formated way the
Is there a nicer way in jQuery to do this ? $(:text).each(function() { if
Is there shorter/nicer way to read input in console as enumerable using standard features
Suppose one wants to fill a vector with random numbers. Then there is a
Wondering whether there is there a nicer way to detect whether a file was
How should I define large strings in VBA? Is there a better way than
Given the code below is there a nicer way to right it that doesn't
Is there an easier way to break out of nested loops than throwing an

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.