How to scroll in iOS Simulator on mac book air?

interface-builder, ios-simulator, objective-c, uiscrollview, xcode

Solution

You need to enable 3 finger drag:

- From the Apple menu, choose System Preferences.

- Click the Accessibility icon

- Select Pointer Control in the sidebar

- Click the Trackpad Options button

- Place a checkmark next to "Enable dragging"

- From the related pop-up menu, choose “three finger drag” so there's a checkmark next to it

- Click OK

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

Problem

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?

Original source

Related problems