Skip to content

Instantly share code, notes, and snippets.

@deda9
Last active June 7, 2018 20:15
Show Gist options
  • Save deda9/daf315e1abbe84d6adbd0d5004528249 to your computer and use it in GitHub Desktop.
Save deda9/daf315e1abbe84d6adbd0d5004528249 to your computer and use it in GitHub Desktop.
Create OperationBlock
let operation = BlockOperation.init()
let operationBlock = {
print("I am operation Block")
}
operation.addExecutionBlock {
operationBlock()
}
operation.start()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment