Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to scroll in iOS Simulator on mac book air?

I have a scroll view and and an embed UIImageView. Code is right but I can not scroll in the Simulator likely because I have a trackpad, not a mouse. Or can I?

like image 501
Frank Avatar asked Jan 30 '14 20:01

Frank


People also ask

How do you swipe in iOS simulator?

1- Place the pointer at the start position. 2- Hold the mouse button. 3- Move the pointer in the swipe direction and release the mouse button.

How do I open iOS simulator on Mac?

The basic way to open a list of simulators is to use Xcode -> Window -> Devices and Simulators. Here you can create and manage all available simulators. But you cannot run them directly. You need to build your application on the simulator, and then you can run it.


1 Answers

You need to enable 3 finger drag:

  1. From the Apple menu, choose System Preferences.
  2. Click the Accessibility icon
  3. Select Pointer Control in the sidebar
  4. Click the Trackpad Options button
  5. Place a checkmark next to "Enable dragging"
  6. From the related pop-up menu, choose “three finger drag” so there's a checkmark next to it
  7. Click OK

https://support.apple.com/en-us/HT204609

like image 110
mechsuitcat Avatar answered Sep 19 '22 18:09

mechsuitcat