Help in Objective C to make a webservice app
I am using Objective C GNU GCC compiler on windows an开发者_运维技巧d want to make App which communicate with a server (webserver) using webservice, send and recieve request between client and server. I know basics but not having any idea from should I start.
Thanks.
If you're doing network requests with basic authentication, I would recommend using either Three20 (https://github.com/facebook/three20) or ASI Http (https://github.com/pokeb/asi-http-request).
There are plenty of examples around for using them, but they use the underlying Cocoa Foundation classes. I've never tried to use these on Windows before with the GNU Objective C compiler
精彩评论