1
我創建的意見陣列與此標籤:一個很奇怪的字符串鑄造錯誤
0.1, 0.2 , 0.3, 0.4 ...... 20
這樣:
var time = 0.1
for k in 0..<200
{
//........
item.text = String(time) //*** here is the problem
time+=0.1
當它到達我得到這個標籤上:
5.5 , 5.6 , 5.7 , 5.8 , 5.9, 5.99999,6.099999,6.199999
恢復正常10.1 10.2 ,etc
關於6的特別之處是什麼? :)
它是200還是20? –
我在硬件業務:) – Curnelious
@AkshanshThakur它的200 coz k增量爲1的步驟不是0.1 – sasquatch