溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

scheduledtimerwithtimeinterval怎么辦

發(fā)布時間:2021-09-22 11:45:17 來源:億速云 閱讀:138 作者:小新 欄目:開發(fā)技術

這篇文章將為大家詳細講解有關scheduledtimerwithtimeinterval怎么辦,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

  以+scheduledTimerWithTimeInterval...的方式觸發(fā)的timer,在滑動頁面上的列表時,timer會暫定回調,為什么?如何解決?

  scheduledtimerwithtimeinterval怎么辦

  RunLoop只能運行在一種mode下,如果要換mode,當前的loop也需要停下重啟成新的。利用這個機制,ScrollView滾動過程中NSDefaultRunLoopMode(kCFRunLoopDefaultMode)的mode會切換到UITrackingRunLoopMode來保證ScrollView的流暢滑動:只能在NSDefaultRunLoopMode模式下處理的事件會影響ScrollView的滑動。

  如果我們把一個NSTimer對象以NSDefaultRunLoopMode(kCFRunLoopDefaultMode)添加到主運行循環(huán)中的時候,ScrollView滾動過程中會因為mode的切換,而導致NSTimer將不再被調度。

  同時因為mode還是可定制的,所以:

  Timer計時會被scrollView的滑動影響的問題可以通過將timer添加到NSRunLoopCommonModes(kCFRunLoopCommonModes)來解決。

  scheduledtimerwithtimeinterval代碼如下:

  //將timer添加到NSDefaultRunLoopMode中

  [NSTimerscheduledTimerWithTimeInterval:1.0

  target:self

  selector:@selector(timerTick:)

  userInfo:nil

  repeats:YES];

  //然后再添加到NSRunLoopCommonModes里

  NSTimer*timer=[NSTimertimerWithTimeInterval:1.0

  target:self

  selector:@selector(timerTick:)

  userInfo:nil

  repeats:YES];

  [[NSRunLoopcurrentRunLoop]addTimer:timerforMode:NSRunLoopCommonModes];

關于“scheduledtimerwithtimeinterval怎么辦”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI