我正在使用http://sudzc.com/在我的 iPhone 应用程序上实现 SOAP 服务调用。该服务是为登录详细信息编写的,它应该根据登录返回值 true 或 false。当我调用服务时,它总是返回值'true'。我检查了错误的电子邮件和密码,但返回值仍然为真。
这是我的代码
- (IBAction)whenLoginButtonPressed:(id)sender
{
MFLSoap *service=[[MFLSoap alloc]init];
[service Login:self action:@selector(handleFind:) Email:emailField.text Password:passwordField.text Token:@"B3A8FFA7F863"];
}
-(BOOL)handleFind: (BOOL) result
{
if (false)
{
NSLog(@"false value");
}
else if(true)
{
NSLog(@"true value");
}
return result;
}
它只返回真值:(