Если вы следовали инструкциям в Documentation / index.html, вы должны сделать что-то вроде этого:
- (IBAction)buttonPressed {
// Create a SOAP object. You might want to create it elsewhere and keep it around.
MyService *service = [MyService service];
// Fire off the SOAP call.
[service LogIn:self action:@selector(handleLogIn:) username:@"AzureDiamond" password:@"hunter2"];
}
- (void)handleLogIn:(id)result {
// This will run when the SOAP request fails or succeeds.
}