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

  • Home
  • SEARCH
  • 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 6129201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T16:42:53+00:00 2026-05-23T16:42:53+00:00

arrayWithObjects… is there a shortcut for using the same object a or any object?

  • 0

arrayWithObjects… is there a shortcut for using the same object “a” or any object?

NSMutableArray *kkk = [NSMutableArray arrayWithObjects: @"a", @"a", @"a", @"a", nil];

something like:

NSMutableArray *kkk = [NSMutableArray arrayWithObjects: [repeat: @"a", 4] , nil];

thanks

  • 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-23T16:42:53+00:00Added an answer on May 23, 2026 at 4:42 pm

    You could create a category method out of this, something like:

    @interface NSMutableArray (Additions)
     - (void)addObject:(id)object numberOfTimes:(NSUInteger)times;
    @end
    
    @implementation NSMutableArray (Additions)
    - (void)addObject:(id)object numberOfTimes:(NSUInteger)times
    {
        for (NSUInteger i = 0; i < times; i++) {
            [self addObject:object];
        }
    }
    @end
    

    (Depending on your circumstances, you may want to create a copy of the object instead of adding the same object multiple times to the same array)

    Then you could just do this:

    [array addObject:@"a" numberOfTimes:4];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to achieve something like this NSMutableArray *myArray = [NSMutableArray arrayWithObjects:@A,@B,@C, nil]; NSLog(@Array:
In Objective-C you can say something like: NSArray *anArray = [NSArray arrayWithObjects:obj,obj2, nil]; In
I am using the following array: NSMutableArray *buttonNames = [NSMutableArray arrayWithObjects:@button1, @button2, @button3, nil];
NSArray *planetArray = [NSArray arrayWithObjects:@Earth, @Jupiter, @Saturn, @Neptune, @Pluto, nil]; NSMutableArray *objectArray = [[NSMutableArray
NSMutableArray *tblContents = [NSMutableArray arrayWithObjects: @1, @2, @3, nil]; [tblContents addObject:txtNewTableRow.text]; My app is
NSMutableArray *Number=[NSArray arrayWithObjects: @1, @2, @3, @4, @5, @6, nil]; I have an array
I am having an array like fallowing, NSArray*array = [NSArray arrayWithObjects:@1.1 something, @1.2 something
self.myArray = [NSArray arrayWithObjects: [NSArray arrayWithObjects: [self generateMySecretObject], [self generateMySecretObject],nil], [NSArray arrayWithObjects: [self generateMySecretObject],
I have a set of NSTimeIntervals like this: NSArray *mySet = [NSArray arrayWithObjects: [NSNumber
Why the NSArray allocated with arrayWithObjects dealloc automatically if already used by BObject object??

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.