user1269290
user1269290

Reputation: 481

Xcode - How to reset: Show only recent files

In Xcode 10 (and earlier versions too), you can click the little clock icon in the bottom left of the Navigator (see screenshot). It will show/hide the most recent files you have worked with. I've just learned about this great feature.

How do I reset the filter manually? What resets this automatically? Committing or shutting down Xcode does not seem to reset the list.

Thanks!

enter image description here

Upvotes: 0

Views: 381

Answers (1)

kubrick G
kubrick G

Reputation: 876

This data is stored in the xcuserdata folder of your .xcworkspace or .xcodeproj package.

For Project:
Remove <username>.xcuserdatad folder content in path xx.xcodeproj/xcuserdata/ and xx.xcodeproj/xx.xcworkspace/xcuserdata/

For Workspace:
Remove <username>.xcuserdatad folder content in path xx.xcworkspace/xcuserdata/

NOTE: You have to close your Xcode first.

Upvotes: 1

Related Questions