mindsnacks / Zinc-ObjC

Objective-C client for Zinc asset distribution system
MIT License
17 stars 6 forks source link

Converting to ARC #75

Closed amrox closed 11 years ago

amrox commented 11 years ago

Hello 2011!

JaviSoto commented 11 years ago

I'm surprised there was no __block typeof(self) in Zinc-ObjC?

amrox commented 11 years ago

hm there is __block typeof(self), I wonder why the tool didn't catch it

JaviSoto commented 11 years ago

hm there is __block typeof(self), I wonder why the tool didn't catch it

I guess because it's not "wrong" or "ilegal" in ARC, but it will cause problems. objects with the __block storage qualifier ARE actually retained by the block.

JaviSoto commented 11 years ago

Perfect. Just one last weak property.

JaviSoto commented 11 years ago

SHIP IT