Objective-C Blocks in UIView Animations
Blocks are simply a way of creating callback code at the time of invocation. The structure is actually very similar to how typically I would create functions in Javascript. Take the following block example in Objective-C: int (^Multiply)(int, int) = ^(int num1, int num2) { return num1 * num2; }; …