10

Possible Duplicate:
Implementing a method taking a block to use as callback

I couldn't find any clear explanation about how to implement a method that executes a completion block.

I know that NSOperation can be subclasses and used with calling setCompletionBlock: . Anyone knows if this is possible just by implementing in the m. file?

Community
  • 1
  • 1
Kaan Dedeoglu
  • 14,765
  • 5
  • 40
  • 41

1 Answers1

7

You may not believe it, but there is a Code Samurai Article which covers the exact ground of your question! About a third of the way down, they subclass NSOperation with an example completion block.

CodaFi
  • 43,043
  • 8
  • 107
  • 153
  • 1
    I saw that article but if you read my question, I was asking about a pure implementation way of doing it. But still thank you! – Kaan Dedeoglu Apr 28 '12 at 06:13