Matthijs
Matthijs

Reputation: 5

Can I turn off saving in a Document Based app? (Swift for OSX)

I'm trying to make an extremely simple note-taking app for OSX: one that can have multiple windows open and where I can quickly write down something. I don't want to store anything anywhere. Most importantly: it should not nag about saving on quitting the app.

I'm nearly there, but I am stuck at turning off saving. Any ideas if this is possible for a Document Based swift-app?

(using Swift and Xcode, complete NOOB at this)

Upvotes: 0

Views: 270

Answers (1)

user965972
user965972

Reputation: 2587

There are different types of applications. You can specify this when you start a new project. Disable "create document-based application" when you start a new project and it won't nag you about saving anything.

Upvotes: 1

Related Questions