Wednesday, October 24, 2012

consuming soap web services in ios






  Consuming soap web services in ios

Get contacts of all your emergency needs on single tap. Download Quick-Finder for iPhone

Use the following link to generate helping code to consume web services

http://adf.ly/Dzf4b

This link open website of sudzC which provide free generated code to consume SOAP web service. To know how to consume generated code download the following HTML file.

http://adf.ly/Dzg6V

2) How to implement google search in ios App


Take a webview and create outlet of that . Let its name is googleWebView.


Take a text field in which you want that user put his key word to search and also make its outlet . Let its name is googleTextField.


Take a button on which you want to start the search create its outlet and action . Let action is doSearch


write the following code under section

-(IBAction)doSearch:(id)sender

{

[self. googleWebView loadRequest: [NSURLRequest requestWithURL:[NSString stringWithFormat:@"http://www.google.com/search?q=%@",self.googleTextField]]];

}

This will open google search page with key word what you enter in text field



You can also download text file from here 

http://adf.ly/E3Cda


No comments:

Post a Comment