I have a UITableView, and sometimes when running the app, the UITableView starts to move in slowmotion. It’s not lagging so to speak, but gets very unresponsive and moves at 20% of the normal speed. I have no idea why. The code and app is very complex, so it’s hard to post code.
Just wondering if anyone have any suggestion on how to track down the error, or had similar problems?
Also, when this happens, all other tableview controller gets slow too throughout the app. Its a tabbar application.
Thanks
Some update:
If I’m in one tableView and push to a detail view… that view will go slowmotion. However, if i switch to another tabview, and then go back to the previous view, It runs smooth again.
There are two possible reason I can think of without seeing code.
You have toggled Slow Animations in the iOS Simulator. This will slow down the animations of the OS. I don’t think it applies to
UIView animations though set in code (at least I have not seen this
case with my animations code).
Unfortunately, there is no indication if this is actually set (besides the fact that animations are SLOW), for example a check mark in the menu like when you toggle Color Blended Layers
You have set UIView animations somewhere and added an extra 0 perhaps, something like instead of
[UIView animateWithDuration:2.0you have[UIView animateWithDuration:20.0.