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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T07:02:24+00:00 2026-05-12T07:02:24+00:00

Why isn’t this code working? The app loads fine, however whenever I press the

  • 0

Why isn’t this code working? The app loads fine, however whenever I press the button the application locks up (doesn’t crash) and returns me to Xcode and there is a red arrow pointing to one of the lines (Indicated on the line below).

I also get three warnings (not errors), one says ‘NSMutableArray’ may not respond to ‘-objectAt:’ and the second one says unused variable ‘soundToPlay’ The third one say implicit declaration of function ‘AudioServicesPlaySystemSound’ Should I be concerned about those?

    //In MainViewController.h

    @interface MainViewController : UIViewController {
        IBOutlet UIButton *Button;      
    }

    @property (nonatomic, retain) UIButton *Button;

    - (IBAction)playSound;

    NSInteger currentSound;
    NSMutableArray *soundArray;

    @end




    //In MainViewController.m

        - (void)viewDidLoad {
        currentSound = 0;
        NSMutableArray *sounds = [[NSMutableArray alloc] init];
        [sounds addObject: @"0.wav"];
        [sounds addObject: @"1.wav"];
        [sounds addObject: @"2.wav"];
        [sounds addObject: @"3.wav"];
        [sounds addObject: @"4.wav"];
        [sounds addObject: @"5.wav"];
        [sounds addObject: @"6.wav"];
        [sounds addObject: @"7.wav"];
        [sounds addObject: @"8.wav"];
        [sounds addObject: @"9.wav"];
        [sounds addObject: @"10.wav"];
        [sounds addObject: @"11.wav"];
        [sounds addObject: @"12.wav"];
        [sounds addObject: @"13.wav"];
        [super viewDidLoad];
    }

    - (IBAction)playSound {
        NSString *soundToPlay = [soundArray objectAt: currentSound];
//First two errors here.
        currentSound = (currentSound + 1) % [soundArray count]; //Red arrow points to this line.
        AudioServicesPlaySystemSound (currentSound);
//Third error here.
    }
  • 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-12T07:02:24+00:00Added an answer on May 12, 2026 at 7:02 am

    First one:
    The methodname doesn’t exist. You meant ot write objectAtIndex instead of objectAt.
    When it says that the object might now respond to the ‘-something’ it’s because the methods isn’t declared in the header file. This results in the compiler not being sure whether or not the method exists in the implementation file or not. When you’re using built-in classes (NSArray, NSView etc.) these kinds of warnings usually means that you misspelled a method-name. The only thing to do is to lookup in the documentation and doublecheck. These kind of type-mistakes will cause a crash in the app when trying to send a message to an object which doesn’t repond to the selector.

    Second one:
    That’s just a warning telling you that a variable isn’t being used. Remove the line. As you can see soundToPlay isn’t being used in the playSound method, it’s only being declared.
    If you use it fx. with a NSLog function call or in a method this warning should disappear.

    Third one:
    You might be using the function wrong. Can’t say from the code you posted..

    Other:
    Daniel is right. Your viewDidLoad method is creating a local array and never storing this in the soundArray instancevariable. To do so add a

    soundArray = sounds
    

    in the bottom of the method. Or just write directly to soundsArray instead of sounds.

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

Sidebar

Ask A Question

Stats

  • Questions 193k
  • Answers 193k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer use Projections, see http://docs.jboss.org/hibernate/core/3.3/reference/en/html/querycriteria.html#querycriteria-projection May 12, 2026 at 6:33 pm
  • Editorial Team
    Editorial Team added an answer As reko has said, the best way to implement this… May 12, 2026 at 6:33 pm
  • Editorial Team
    Editorial Team added an answer You should DEFINITELY introduce a surrogate INT IDENTITY() primary key!!… May 12, 2026 at 6:33 pm

Related Questions

Why isn't Visual Studio 2005 generating a serialization setting when I set the project
Why isn't Collection.remove(Object o) generic? Seems like Collection<E> could have boolean remove(E o); Then,
Why isn't this project maintained anymore? I love this app, however not updating it
Why isn't there a logout button? Why no list of websites you're logged into?
Why isn't this working ? public interface IPoint { // not important } public

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.