CK vir
CK vir

Reputation: 287

How to move cursor in Xcode smoothly?

For example like below gif

enter image description here

First he is type QL1("") and his cursor's position is locate after double quotes

Then how to move cursor's position between double quotes?

I know i can use arrow key,but i don't want to move my hand on keyboard

So is there have convenient way to move cursor?

Just like we can press Tab to move cursor to different parameter

Upvotes: 0

Views: 271

Answers (1)

Sohel L.
Sohel L.

Reputation: 9540

You don't need to do anything. Xcode is already automatically putting that.

  1. Just put a single double quote(")
  2. Write whatever you want to write
  3. Press the next arrow key (->) and the second single double quote(") will be automatically added.

Hope this helps!

Upvotes: 1

Related Questions