What is equivalent iOS API for something like .NET cookie container
I'm new to mac development, i want to know the equivalent iOS API for .NET cookie container.
.NET cookie container is something like stores the cookies from an initial HTTP request and then sends 开发者_如何学JAVAsame cookies in subsequent requests. Which exactly behaves like browser, but it is not a browser component.
I edited your question to make it a bit clearer what you're asking.
For HTTP client work on iOS, I use ASIHTTPRequest, a 3rd party library that wraps the built-in HTTP client API, and which does support cookies.
http://allseeing-i.com/ASIHTTPRequest/
精彩评论