Is there a way in Xcode to jump directly to edits that you made in a file, instead of having to scroll through to find them?

I want to know if there is an easy of doing this.
It sounds like you should be using View > Show Code Review.
In the right column, choose the version you want to compare against.
At the bottom of the screen, "<" and ">" will step through the edits.

View > Hide Code Review, to exit.
a way in Xcode to jump directly to edits that you made in a file

What time frame ?
  • Do you mean after closing the file and reopening ?

  • do you mean the last changes you made in an edit session.

There is the solution proposed above if you manage your versions in git.
There are other simple ways (not so powerful):
  • mark the changes in a comment as // 5.3.2021

Then searching through them is very easy.
  • In an editing session, repeat undo to jump to the last changes

until you find the one you want.
But then you'll have to redo.
So only useable to roll back a few changes.
Is there a way in Xcode to jump directly to edits that you made in a file, instead of having to scroll through to find them?
 
 
Q