Sup guys,
I\'m trying to do a function that calls itself but by putting everything on one block,
As you can see, the following function is intended to be cal
It works with XCode 5 - no warnings, no retain cycles:
typedef void(^blockT)(); blockT block1; blockT __block block1recursive; block1recursive = block1 = ^(){ block1recursive(); }; block1();