Top "Nstimer" questions

An Objective C class for creating timer objects.

How do I use NSTimer?

How do I use an NSTimer? Can anyone give me step by step instructions?

objective-c cocoa nstimer
How can I use Timer (formerly NSTimer) in Swift?

I tried var timer = NSTimer() timer(timeInterval: 0.01, target: self, selector: update, userInfo: nil, repeats: false) But, I got an error …

ios nstimer nstimeinterval swift
@selector() in Swift?

I'm trying to create an NSTimer in Swift but I'm having some trouble. NSTimer(timeInterval: 1, target: self, selector: test(), userInfo: …

swift selector nstimer
How to run a method every X seconds

I'm developing an Android 2.3.3 application and I need to run a method every X seconds. In iOS, I have NSTimer, …

android timer nstimer
How can I make a countdown with NSTimer?

How can I make a countdown with an NSTimer using Swift?

xcode swift nstimer
Getting Current Time in string in Custom format in objective c

I want current time in following format in a string. dd-mm-yyyy HH:MM How?

iphone objective-c datetime nstimer
Determine if UIView is visible to the user?

is it possible to determine whether my UIView is visible to the user or not? My View is added as …

iphone uiview uitabbarcontroller visibility nstimer
How to stop NStimer event?

Possible Duplicate: NSTimer doesn't stop In my application I am using NStimer to call an animation function every 3 seconds. I …

ios objective-c iphone nstimer
What's the best way to detect when the app is entering the background for my view?

I have a view controller that uses an NSTimer to execute some code. What's the best way to detect when …

ios nstimer
How Can I Start And Stop NSTimer?

I develop Stop Watch Application. In my application, there are Two UIButtons , StartBtn and StopBtn, And also I use NSTimer. …

iphone ios objective-c cocoa-touch nstimer