Xcode 8: how to disable autosave

Can autosave changes be disabled in Xcode 8?

I saw a message to run defaults write com.apple.dt.Xcode ApplePersistence -bool nofrom the terminal, but this does not seem to work for me.

+4
source share
1 answer

For me, the following terminal command did the trick:

defaults write $(osascript -e 'id of application "Xcode"') ApplePersistence -bool False
0
source

Source: https://habr.com/ru/post/1675260/


All Articles