ARC and ASIHTTPRequest

2019-02-01 12:29发布

I have a strange problem.

I use ASIHTTPRequest in a iOS 5 project with ARC enabled. Since ASIHTTPRequest does not support ARC I have disabled ARC on all individual ASIHTTPRequest files.

enter image description here

However, when I'm trying to compile my project, xcode still believes that those files are ARC-enabled and it complains.

enter image description here

Did I do anything wrong or is that a bug in xcode? Don't tell me to convert ASIHTTPRequest to ARC-compatible code with the refactor tool. I have tried to do that and xcode complains on that ARC is enabled on the project (?!?!).

2条回答
可以哭但决不认输i
2楼-- · 2019-02-01 12:48

I did it this way.

You have to make the ASIHTTP as a library and include it in your project.

Following is the procedure.

  1. Create iPhone Project Cocoa Touch Static Library.
  2. Copy all the ASIHTTP supported files and Rechability .h and .m files inside the Library Project.
  3. Make a Build.
  4. You will get a .a file.
  5. Copy the file in your project.
  6. Copy the necessary .h (header) files you are going to use in your project.

You will not get any ARC Error. Hope it helps some one facing similar ARC problems..

查看更多
一夜七次
3楼-- · 2019-02-01 12:52

You typed -fno-ojbc-arc. The correct flag is -fno-objc-arc.

查看更多
登录 后发表回答