I've recently been trying to understand the importance of blocks in programming (Objective-C in particular). They're obviously used quite a lot in iOS/Cocoa APIs, so I'm trying to understand them.
Mostly, I still don't understand why you would use a block versus just creating a separate helper function. For example, if I create a block that implements some sorting function, wouldn't it be easier to create that function as a method of a helper class so all objects in the code could use it more easily?