Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make a periodic call to a method in objective c?

if the question is not explained clearly please excuse me. I'm developing an iphone Client-Server app, i created all the classes, instances and ect. I can even send get and parse the response too.. Anyway, now i need to make my method be called in a defined period of time(for instance, call it repeatly in 10 seconds). I googled a lot and also take a look at

NSDate but i couldn't solve.. Now, can anyone please help me how to handle this situation? Thank you very much

like image 640
ilhan çetin Avatar asked Dec 23 '11 19:12

ilhan çetin


2 Answers

You can create and schedule an instance of NSTimer to call your method on a given time interval. See in particular the following convenience creation method:

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)target selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)repeats

http://developer.apple.com/library/ios/#documentation/cocoa/reference/foundation/Classes/NSTimer_Class/Reference/NSTimer.html

like image 63
jlehr Avatar answered Oct 19 '22 23:10

jlehr


Your best bet is to look into Grand Central Dispatch since you are going to want to run this in the background:

Use NSTimer mentioned above.

like image 45
Mike D Avatar answered Oct 19 '22 23:10

Mike D