Web サービスの入力フィールドに textfield を使用しています。たとえば、StationID textfield=35016 と入力しました。
合計 770 の StationID があり、すべてのステーションに名前があります。stationId 35016 の名前は New Istanbul LTD STI です。検索バーに New を入力すると、New Istanbul LTD.STI が表示されます。Web サービス呼び出しを送信するために選択します。
検索フィールドを検索して選択するにはどうすればよいですか。このコードはテキストフィールド用です。検索バーを変更するにはどうすればよいですか? ありがとうございました。
.h ファイル内
#import <UIKit/UIKit.h>
@interface AMDViewController : UIViewController<UITextFieldDelegate,NSXMLParserDelegate>
@property (unsafe_unretained, nonatomic) IBOutlet UITextField *StationID;
@end
.m ファイルで
enter code here
#import "AMDViewController.h"
@interface AMDViewController ()
{
NSMutableData *webData;
NSXMLParser *xmlParser;
NSMutableString *retornoSOAP;
BOOL teveRetorno;
@end
@implementation AMDViewController
@synthesize StationID;
}
-(IBAction)calcularTemperatura:(UIButton *)sender{
NSString *mensagemSOAP= [NSString stringWithFormat:@"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n"
"<soap:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
"<soap:Body>\n"
"<Details xmlns=\"http://tempuri.org/\">\n"
"<StationID>%@</StationID>\n"
"<StationName>%@</StationName>\n" //StationName is here in web sevrice
"</Details>\n"
"</soap:Body>\n"
"</soap:Envelope>\n",StaionID.text];
NSLog(@"SOAP msg = \n%@\n\n", mensagemSOAP);
NSURL *url = [NSURL URLWithString:@"http://webservice/sample.asmx"];
NSMutableURLRequest *theRequest = [NSMutableURLRequest requestWithURL:url]; NSString *tamanhoMensagem = [NSString stringWithFormat:@"%d", [mensagemSOAP length]];
[theRequest addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[theRequest addValue: @"http://tempuri.org/Details" forHTTPHeaderField:@"SOAPAction"];
[theRequest addValue:tamanhoMensagem forHTTPHeaderField:@"Content-Length"];
[theRequest setHTTPMethod:@"POST"];
[theRequest setHTTPBody:[mensagemSOAP dataUsingEncoding:NSUTF8StringEncoding]];
NSURLConnection *conexao = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if(conexao){
webData = [NSMutableData data];
}else{
NSLog(@"Connection Error.");
}
}
-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict{
if ( [elementName isEqualToString:@"StationID"] ) {
if (!retornoSOAP) {
retornoSOAP = [[NSMutableString alloc] init];
}
teveRetorno = YES;
}
}
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI: (NSString *)namespaceURI qualifiedName:(NSString *)qName{
if ( [elementName isEqualToString:@"StationID"] ) {
StaionTotalSalesTodayLabel.text = retornoSOAP;
retornoSOAP = nil;
teveRetorno = NO;
}