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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:46:38+00:00 2026-05-23T20:46:38+00:00

Sorry if this is basic, but I can’t get my head around this. I

  • 0

Sorry if this is basic, but I can’t get my head around this. I have an array and would like to go through every single object in it and see if it isEqualToString:@”something”. If tried this, but it will crash:

    for (int i = 0; i < ([myNSMutableArray count]); i++) {

    NSLog(@"i = %i", i);

    if ([[myNSMutableArray objectAtIndex:i] isEqualToString:@"something"]) {
        ...
    } else {
        ...
    }


}

I’ll get:

    2011-07-14 13:38:40.983 MNs[21416:207] i = 0
2011-07-14 13:38:40.985 MNs[21416:207] -[__NSArrayM isEqualToString:]: unrecognized selector sent to instance 0x4c976f0
2011-07-14 13:38:40.987 MNs[21416:207] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[__NSArrayM isEqualToString:]: unrecognized selector sent to instance 0x4c976f0'

Any help would be very much appreciated. Thanks in advance!

EDIT:

Sorry, I forgot. This is how I created the array:

NSMutableArray *myNSMutableArray = [[NSMutableArray alloc] init];

    for (int x = 0; x < 30; x++) {
        [myNSMutableArray addObject:@""];
        [myNSMutableArray addObject:@"something"];
        [myNSMutableArray addObject:@""];
    }

EDIT2:

So sorry, the problem was that I tried to copy a mutable array … so all of your answers are correct, I just need to pick one now, I guess.

  • 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-23T20:46:39+00:00Added an answer on May 23, 2026 at 8:46 pm

    Try This,

    for (int i = 0; i < ([myNSMutableArray count]); i++) {
    
        NSLog(@"i = %i", i);
    
    NSString *stringToCheck = (NSString *)[myNSMutableArray objectAtIndex:i];
    
        if ([stringToCheck isEqualToString:@"something"]) {
            ...
        } else {
            ...
        }
    
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm sorry this may seem a bit basic, but I can't get my head
Sorry if this is very basic as a question....but I can't my head around
Sorry if this is basic, but I have been dealing with figuring this out
Sorry if this is a basic question, but how can I take an ItemTemplate
Sorry, this is very basic, but I can't set the AnimationOption from the default
Sorry this is such a basic question, but I can't find a straight answer
Sorry basic question I'm sure but I can't seem to figure this out. Say
Sorry if this is a really basic question but it's been really getting to
Ok sorry this might seem like a dumb question but I cannot figure this
Sorry if this sounds like a really stupid question, but I need to make

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.