iPhone 的可重用 Web 服务代码
我对 iPhone 开发非常陌生,之前一直使用 Java。
目前,我正在我的项目中使用 SOAP Web 服务,并希望继续这样做。
但每次我都必须为除参数之外的各种 Web 服务编写相同的代码。
任何人都可以指导我如何为 Web 服务创建可重用的代码,以便我可以将它用作静态库或每个项目的东西,然后我不需要为每种 Web 服务单独编写任何代码?
我想创建一个非常通用的代码,并且适用于各种 Web 服务,无论参数数量如何。
I am very new to iPhone development and previously was working with Java.
Currently I am using SOAP web services in my project and want to continue with the same.
But everytime i have to write the same code for all kinds of web services except for the parameters.
Can anyone guide me regarding how can i create a reusable code for web-services, so that i can use it as a static library or something for every project and then i wont need to write any code separately for each kind of web service?
I want to create a code which would be very generic and will be work for all kinds of web services irrespective of the number of parameters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建单例类和方法将是类方法,然后它们将被全局使用,您可以通过在代码中做一些修改来使用它们。
create the singleton class and method will be class methods then they will be globally used you can use them by doing a little modification in the code .
所以当需要调用webservice时,只需调用WebservicesManager类的nsurlConnection创建方法([webserviceManager connectTo:@""])即可真正发起webservice调用。
So when you need to call a webservice, just make a call to the nsurlConnection creation method of the WebservicesManager class ( [webserviceManager connectTo:@""]) to actually initiate a webservice call.