class CustomThread: Thread { | |
override func main() { | |
do_something | |
} | |
} | |
let customThread = CustomThread() | |
customThread.start() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
class CustomThread: Thread { | |
override func main() { | |
do_something | |
} | |
} | |
let customThread = CustomThread() | |
customThread.start() |