I want to be able to schedule three small events in the future without having to write a function for each. How can I do this using NSTimer? I understand block
NSTimer
Timer.scheduledTimer(withTimeInterval: 0.25, repeats: true) { timer in print("no, seriously, this works on iPhone") }
This thanks to @JohnnyC !
Truly strange!