Hello,
In the below method calls from a single object, how to make the handler method to run 1st and then the main method in Objective-C? Does it run in Asynchonous or Synchronous way?
Main method :AuthenticateMobileServer
handler Method :Handler
[mobile_Obj authenticateMobileServer:self action:@selector(handler:)];
Thank You.