Created
January 29, 2018 21:42
-
-
Save olbrichj/5b5875b2ef583ba29a307bd4d39b83bd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let op1 = Operation() | |
op1.name = "Operation1" | |
OperationQueue.main.addOperations([op1], waitUntilFinished:false) | |
let operations = OperationQueue.main.operations | |
operations.map { op in | |
if op.name == "Operation1" { | |
op.cancel() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment