If this is the method name which has to be called:
-(Authenticate_Obj)Authenticate_User:(NSString*)Number:(NSString*)name:(NSString*)password
how to call this method from the @selector ??
can i do it in this way??
[tis_obj AuthenticateMobileServer:self action:@selector(AuthenticateUser:::)];
Thank You.
As Chris pointed correct syntax to declare selector for a method with multiple parameters is
However you can’t call a method that takes more then 1 parameter using the
-performSelectormethod (and similar) – you have to use the NSInvocation class for that