Teodor Sorescu
Teodor Sorescu
App:  Web: 
I get the same behavior with mouse click > Paste as with Ctrl + V.
It won't work if you do not have an available RunLoop (see [here](https://github.com/luoxiu/Schedule#runloop)). You either need to specify a queue like: ``` let planWorkTimer = Plan.every(.monday, .tuesday, .wednesday, .thursday, .friday).at("6:49...
如果您未指定队列或应用程序中没有可用的 RunLoop,则不会打印它。 ([参见此处](https://github.com/luoxiu/Schedule#runloop)) 为了让它工作,你需要指定队列: `let t1 = Plan.after(1.second).do(queue: .global()) { print("1 second passed") }` 或者有一个可用的 RunLoop,如下所示: ``` let t1 = Plan.after(1.second).do { print("1 second passed") } CFRunLoopRun() ```