0

In xCode 4.2 & iOS 5 SDK , Automatic Reference Counting (ARC) is introduced. However, it made many third party libraries failed to compile, e.g. MBProgressHUD.

Is there any way to avoid those compile errors (only for those 3rd party libraries)? Or should I disable ARC ?

Ben Lings
  • 28,823
  • 13
  • 72
  • 81
Raptor
  • 53,206
  • 45
  • 230
  • 366

1 Answers1

1

You can enable/disable on a per-file basis.

Disable Automatic Reference Counting for Some Files

Community
  • 1
  • 1
QED
  • 9,803
  • 7
  • 50
  • 87