UIWorkIntervalTiming workIntervalStart

IosXcodeUiscrollviewxcode10.2

Ios Problem Overview


Getting console log while scrolling ScrollView. Is there way to remove this? > 2019-03-27 12:33:34.109573+0530 MyApp[10465:46241] [UIWorkIntervalTiming] workIntervalStart: startTimestamp > targetTimestamp; rolling forward by 1.116667

Ios Solutions


Solution 1 - Ios

I can observe the same issue with a UICollectionView and UITableView. I suspect it is a diagnostic output used to analyse the scrolling performance.

Note: I notice this issue from Xcode 10.2

in UICollectionView if you swapping too much faster than collection getting Freeze for few moment on Simulator but Real Device working fine.

> Earlier Xcode version this features is UIWorkIntervalTiming had its > logging privileges revoked

Solution 2 - Ios

Check any third party UI/animation related library used with in scroll view/table view cell.Issue might be with those libraries.

Solution 3 - Ios

You can simply silence the noise from the simulator:

  1. Xcode Menu: Product -> Scheme -> Edit Scheme
  2. Select the Run(Debug)
  3. On Environment Variables section set OS_ACTIVITY_MODE = disable
  • Image

Here is an image

Unfortunately, I can't find any information relating to this issue in Apple documentation, but I believe that it is some diagnostic output which is used to analyze the scrolling performance.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSPatelView Question on Stackoverflow
Solution 1 - IosNazmul HasanView Answer on Stackoverflow
Solution 2 - IosRajeev UdayanView Answer on Stackoverflow
Solution 3 - IosAlex BesView Answer on Stackoverflow