Is there a specific place you are seeing this stutter? I don't think Apple will ever be able to completely eliminate scrolling stutter - especially on screens with tables. As an iOS developer, I can tell you that the way the system recycles table cells will always be prone to some stutter, especially if the data in the table cells is complex. Basically, when a table scrolls, the system unloads the cells after the scroll off the screen, then recycles those cells so they can be used for the data that will be scrolling onto the screen. Sometimes the incoming data requires complex processing, which is what causes the scrolling stutter. Simple text or static images in cells usually don't require enough processing to affect the scrolling. But a complex graph with many calculations, for example, would probably not be ready to display by the time the cell scrolls onto the screen, especially if you scroll quickly. It typically only starts processing a cell when it's 2-3 cells away from appearing on screen. I hope that makes sense.