Teodor Sorescu

Results 4 comments of Teodor Sorescu

App: ![app](https://user-images.githubusercontent.com/24192654/186666157-e4e586b3-4714-4f39-9929-c09b42512de8.gif) Web: ![web](https://user-images.githubusercontent.com/24192654/186666186-8d34a46e-05b0-4f3d-acd7-75a349b15f50.gif)

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() ```