What in your opinion is the best open source networking library to work with iOS 5? I ask that, because the ARC problem with ASIHTTPRequest and AFNetworking is very annoying.
Asked
Active
Viewed 1,510 times
2 Answers
4
You can try mknetworkkit It is ARC ready. And looks very interesting.

david
- 200
- 1
- 14
-
I've tested now MKNetworkingKIt. It is perfect. Thanks for telling about that! Here is a simple tutorial for using it: http://www.touch-code-magazine.com/asihttprequest-is-dead-now-what/ – teawithfruit Mar 07 '12 at 20:50
2
If you really need ASIHTTPRequest
disable ARC for it.
Select your project -> Targets -> Build phases -> And set -fno-objc-arc
compiler flag for files.
Check this answer for details.

Community
- 1
- 1

Sergey Kuryanov
- 6,114
- 30
- 52