我的代码:
myTextBox.text = count1.currentCount.toString();
我如何以毫秒显示当前计数?
答案 0 :(得分:2)
如果您想将currentCount
转换为毫秒,只需乘以1000:
var currentMilliseconds = count1.currentCount * 1000;
简单地说,1秒是1000毫秒。所以,转换:
milliseconds = seconds * 1000;
seconds = milliseconds * 0.001;
在你的情况下:
myTextBox.text = String(count1.currentCount * 1000);