Hi,
Say i am using
timer.performWithDelay(1000, function() end, 1),
Is it necessary that i should assign this to an local variable and cancel after its use, i.e,
local timerVar = timer.performWithDelay(1000, function() end, 1)
timer.cancel(timerVar)
timerVar = nil.
Thanks,
Kumar KS.