Created
April 5, 2017 11:49
-
-
Save abdulowork/9257d3f731d076ebe80c1e3b77712d9a to your computer and use it in GitHub Desktop.
This file contains 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
import UIKit | |
import PlaygroundSupport | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
class ObjcClass: NSObject { | |
func thisMethodWillBeEnqueuedToRunLoop() { | |
print("I am executed") | |
} | |
} | |
print("I am on \(Thread.current)") | |
print(1) | |
ObjcClass().performSelector(onMainThread: #selector(ObjcClass.thisMethodWillBeEnqueuedToRunLoop), with: nil, waitUntilDone: false) | |
print(2) | |
sleep(1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment