user496949
user496949

Reputation: 86085

DO I have to use __strong keyword?

I saw someone use the following

__strong static foo *_foo = nil;

I am wondering if __strong is needed here; I mean __strong is the default? is that right?

Upvotes: 3

Views: 188

Answers (1)

RyanR
RyanR

Reputation: 7758

Since a strong reference is the default, you are correct.

Upvotes: 6

Related Questions