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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:41:53+00:00 2026-06-06T11:41:53+00:00

I am trying to scan through an NSMutableArray and remove all 0’s. (They are

  • 0

I am trying to scan through an NSMutableArray and remove all 0’s. (They are wrapped in NSNumber objects). I was trying to just use a for loop to search through, but I come across the issue that once I remove an object, it causes an index out of bounds issue for future iterations. I can’t think of a logical way to easily solve this issue.

My current code is this:

    for(int i =0; i < [array count]; i++)
{
    if(!abs([[array objectAtIndex: i] floatValue]) > 0.0)
    {
              [array removeObjectAtIndex: i];
    }
}

Is there a way to fix up my loop or use a special method/function to just eliminate all 0s?

  • 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-06T11:41:54+00:00Added an answer on June 6, 2026 at 11:41 am

    I recommend using NSArray’s filteredArrayUsingPredicate: method with a simple block, like so:

    NSPredicate *notZero = [NSPredicate predicateWithBlock:
        ^BOOL(id evalObject,NSDictionary * options) {
            return [evalObject boolValue];
        }];
    array = [array filteredArrayUsingPredicate:notZero];
    

    The logic in the block is simple, any float which is non-zero is truthy, and thus passes the predicate.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to loop through all files and folders and perform an action
I'm trying to create a procedure that will scan through all items in a
I'm trying to improve upon a utility that basically scan through all our reports
I'm trying to scan available wifi network through my Android device. Here's the chunk
Learning my way through this stuff and could use some help. I'm trying to
Trying to set up a project but fail at Autowiring objects through Spring. package
I'm developing an application with BLE and am trying to constantly scan every known
I am trying to create a php file that would scan a directory, make
I'm trying to utilize setDebugFlags as recommended here to scan for opengl errors: http://developer.android.com/resources/articles/glsurfaceview.html
ok, so what i'm trying to do is to scan the previous folder. $scanned

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.