6

I am a noob in ios programming. Please, explain me the meaning for these __strong and __weak properties and why they are used?

Rugmangathan
  • 3,186
  • 6
  • 33
  • 44

1 Answers1

10

strong and weak are modifiers used in property declarations while __strong and __weak are used in declarations of variables.

Nikolai Ruhe
  • 81,520
  • 17
  • 180
  • 200