6

Xcode 9.3 newly recommends setting CLANG_ENABLE_OBJC_WEAK to YES for all Objective-C projects. Can someone explain what this setting will mean for a non-ARC app?

Cœur
  • 37,241
  • 25
  • 195
  • 267
stonedauwg
  • 1,328
  • 1
  • 14
  • 35

1 Answers1

2

From what I can see it allows you to use weak properties in non-ARC code and they will be nilled automatically.

George
  • 4,189
  • 2
  • 24
  • 23