selector의 구문이 바뀌었다.
self 클래스에 runLoop()가 있어야 한다.
let thread = NSThread(target:self, selector:#selector(runLoop), object: nil)
thread.start()
func runLoop() {
while(true) {
print("runLoop")
}
}
No comments:
Post a Comment