skip to Main Content

I recently upgraded my laptop to Macbook M1 pro. I have a scroll view and it used to scroll with inertia when I use three finger to drag on my old Macbook air.

Now with the M1 chip there is no inertia when scrolling. I changed the iOS simulator to use Rosetta but still the scroll is not smooth like it used to be before.

Also is there any way to swipe a scroll view in iOS simulator via two finger swipe like we use in browser? My app has lots of scrollview and it’s important to me.

2

Answers


  1. As written in the solution for iOS Simulator scrolls too fast on Apple M1 the issue seems to be linked to the Simulator app running on Apple M1 code. Switching it to use Intel (=Rosetta) did solve the issue for me:

    To run in Rosetta, right click on Xcode and choose "Show Package Contents", from there you navigate to "Contents > Developer > Applications". There you’ll find the Simulator app. If you right click on it and choose "Show info", you’ll find an option to run it using Rosetta.

    Interestingly the problem appears for me only when I try to run an old iOS 13.7 Simulators. It seems that Apple has fixed the issue for more recent iOS versions (like 14.5).

    Login or Signup to reply.
  2. There is no longer an option in the iOS Simulator’s Get Info dialog to run with Rotessa. Instead, what you can do is launch the iOS Simulator from Terminal using the following command:

    arch -x86_64 /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search