2015-05-07 188 views
-2

我有一個while循環,這太快了,所以我想讓它每隔一秒左右發生一次。我現在有這個權利:等待循環後

while (i == 1,) { 
    println("printed") 
} 
+0

http://stackoverflow.com/questions/27517632/how-to-create-a-延遲功能於迅速 – AlienHoboken

回答

2

您可以使用NSTimer和調度一個動作每一個第二:

NSTimer.scheduledTimerWithTimeInterval(1, target: self, selector: "yourMethodToCall", userInfo: nil, repeats: true) 

func yourMethodToCall(){ 
    println("each second") 
}