3

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.

Philipp Schlösser
  • 5,179
  • 2
  • 38
  • 52
teawithfruit
  • 767
  • 1
  • 11
  • 22

2 Answers2

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