I use AsyncSocket on the iPhone to communicate with a server. AsyncSocket is based on run loops but my app is based on threads. That means, I start a new thread to write data and wait until a response
When I start a 2nd background thread and pause the main thread, will my First Responder still be in action? For example I have an overwriting method called -flagsChanged and was wondering if it would
I am开发者_开发百科 creating an iphone application which i need to stop a running thread if the application went to background mode,is it possible to stop thread in iphone application?
I have a main and an auxiliary thread in my app. Main thread as everyone knows is being used by UI. I use the secondary thread to do the background loading of my views.
Does every thread have to have its own pool? I am writing an iPhone app which uses threads. If I do not put a pool on a thread it complains abut leaking.
What is the difference between NSThread and pthread? Does NSThread use pthread as its internal implementation and do we really need the extra overhead of NSThread when pthreads suffice especially on t
I have called a method in separate thread in viewdidload method [NSThread detachNewThreadSelector:@selector(callWebService) toTarget:self withObject:nil];
I need to know if it is possible to create a new thread to handle setting local notificati开发者_JAVA百科ons.
I\'m trying to get an rss parser on a different thread in my iphone app, but when I do this I only get the spinning indicator (i.e., nothing).But if I comment out the call [NSThread....] in viewDidApp
I have an audio file which needs to fade out while the user is scrolling a UIScrollView. However, any performSelector:withObject:afterDelay: method is blocked until the user has stopped scrolling. So