This method detachNewThreadSelector:toTarget:withObject:will call a method that is without any arguments.But i have to start the thread that reecives a single argument upon execution.How to accomplish this using threads.
This method detachNewThreadSelector:toTarget:withObject: will call a method that is without any arguments.But i have
Share
Check the documentation again. The method is supposed to take one argument, the value of which is specified as the
withObject:portion of the message.