Top "Nstimer" questions

An Objective C class for creating timer objects.

Scheduled NSTimer when app is in background?

How do people deal with a scheduled NSTimer when an app is in the background? Let's say I update something …

iphone ios nstimer uiapplicationdelegate
How do I create a NSTimer on a background thread?

I have a task that needs to be performed every 1 second. Currently I have an NSTimer firing repeatedly every 1 sec. …

objective-c cocoa nstimer nsrunloop nsblockoperation
How to stop NSTimer

Hey so i am just making an example application and i am having a little trouble, So i have a …

iphone objective-c xcode nstimer
Using an NSTimer in Swift

In this scenario, timerFunc() is never called. What am I missing? class AppDelegate: NSObject, NSApplicationDelegate { var myTimer: NSTimer? = nil func …

swift nstimer
calling a method after each 60 seconds in iPhone

I have created an GKSession and as its object is created, it starts search for availability of devices, as - (…

iphone timer nstimer gksession
How to call a method every x seconds in Objective-C using NSTimer?

I am using Objective-C, Xcode 4.5.1 and working on an app for the iPhone. I have a method A in which …

objective-c cocoa-touch nstimer
How to stop NSTimer.scheduledTimerWithTimeInterval

How do i stop my timer from running? Not like a pause, but a stop. import UIKit class LastManStandingViewController: UIViewController { @…

ios swift nstimer
NSTimer - how to delay in Swift

I have a problem with delaying computer's move in a game. I've found some solutions but they don't work in …

ios swift nstimer
How can I pause and resume NSTimer.scheduledTimerWithTimeInterval in swift?

I'm developing a game and I want to create a pause menu. Here is my code: self.view?.paused = true …

swift ios8 nstimer
Implementing a Countdown Timer in Objective-c?

I am new to iOS programming. I am working on words matching game. In this game I need to implement …

iphone objective-c ios nstimer