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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T02:10:32+00:00 2026-05-21T02:10:32+00:00

I want that my pause method is called when a push notification (push, sms)

  • 0

I want that my pause method is called when a push notification (push, sms) appears.

First of all, the concept of the game:
When you start the app, a main view is shown where you can choose one of three different game modes.
So, if the user plays in one game mode and gets a sms, the game should pause and if he cancels the notification, the game should go on.

the names of the viewcontrollers of the three different modes are PlayViewController, PlayTwoViewController and TimePlayViewController.

So, here’s my appDelegate:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {    

// Override point for customization after application launch.

// Add the view controller's view to the window and display.
[self.window addSubview:viewController.view];
[self.window makeKeyAndVisible];

return YES;

}

- (void)applicationWillResignActive:(UIApplication *)application { [PlayViewController pauseGame]; [PlayTwoViewController pauseGame];[TimePlayViewController pauseGame]; }


- (void)applicationDidEnterBackground:(UIApplication *)application {

}

- (void)applicationWillEnterForeground:(UIApplication *)application {

}

-(void)applicationDidBecomeActive:(UIApplication *)application { [PlayViewController pauseGame]; [PlayTwoViewController pauseGame];[TimePlayViewController pauseGame]; }

 - (void)applicationWillTerminate:(UIApplication *)application {

}

the pauseGame method is the always the same. The code is:

-(IBAction)pauseGame {

[myTimer invalidate];

PauseViewController *screen = [[PauseViewController alloc] initWithNibName:nil bundle:nil];
screen.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:screen animated:YES];
[screen release];   }

myTimer is just a NSTimer.

The app crashes when I build it with the code above
The console says:

2011-04-03 11:22:10.091 appName[458:207] +[PlayViewController pauseGame]: unrecognized selector sent to class 0x1d39c
2011-04-03 11:22:10.093 appName[458:207] * Terminating app due to uncaught exception ‘NSInvalidArgumentException’, reason: ‘+[PlayViewController pauseGame]: unrecognized selector sent to class 0x1d39c’
terminate called after throwing an instance of ‘NSException’

  • 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-21T02:10:33+00:00Added an answer on May 21, 2026 at 2:10 am

    Implement:

    - (void)applicationWillResignActive:(UIApplication *)application
    

    http://developer.apple.com/library/ios/#documentation/uikit/reference/UIApplicationDelegate_Protocol/Reference/Reference.html

    “This method is called to let your application know that it is about to move from the active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. An application in the inactive state continues to run but does not dispatch incoming events to responders.

    You should use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. An application in the inactive state should do minimal work while it waits to transition to either the active or background state.”

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

Sidebar

Related Questions

I have some XML that I want to parse using the lxml method in
I want to pause UIImageView animation and based on my research found that you
Let's say I want to pause a thread so that other threads can run
I am making a game for iPhone and want to be able to pause
I have a method that I want spring to schedule - for that matter
I want to make one project that parse wiki pages and get needed information
I want to write a program (preferably in java) that will parse and analyze
The issue I have is that I want to parse strings in order, so
I have XML in the following form that I want to parse with PHP
I have this array, that I want to parse into javascript. $offerText[] = (

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.