我有 WCF 服务,我想从我的 Web 服务中获取数据。但是 URL 总是返回 nil。为什么?我想将来自文本字段值的参数发送到 WCF。例如;
txtfield.text = @"ATAŞEHİR";
怎么了 ?
NSString *request = [NSString stringWithFormat:@"http://www.xxxxxxxx.com/CCWCF.svc/MethodName/%@",txtfield.text];
NSURL *URL = [NSURL URLWithString:[request stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]];
我尝试了不同的东西,但结果没有改变。
NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:@"http://www.xxxxxxxx.com/CCWCF.svc/MethodName/%@",txtfield.text]];
或者:
NSURL *URL = [[NSURL alloc] initWithString:[request stringByAddingPercentEscapesUsingEncoding:NSASCIIStringEncoding]];