Reputation: 86085
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
Reputation: 7758
Since a strong reference is the default, you are correct.
Upvotes: 6