Re: Check if there are autosaved documents

2020-04-27 Thread Georg Seifert via Cocoa-dev
perfect. Thanks a lot. Georg > Am 27.04.2020 um 12:26 schrieb Allan Odgaard via Cocoa-dev > : > > On 27 Apr 2020, at 15:35, Georg Seifert via Cocoa-dev wrote: > >> Is there a method/callback that is called when all loading is done >> (including the loading of documents). > > Have a look at

Re: Check if there are autosaved documents

2020-04-27 Thread Allan Odgaard via Cocoa-dev
On 27 Apr 2020, at 15:35, Georg Seifert via Cocoa-dev wrote: Is there a method/callback that is called when all loading is done (including the loading of documents). Have a look at applicationOpenUntitledFile:

Check if there are autosaved documents

2020-04-27 Thread Georg Seifert via Cocoa-dev
Hi, my app shows a welcome screen (that offers to open recent documents or to make a new). I like to not show it, when there are autosaved documents that open automatically. Now I open that window in applicationDidFinishLaunching: but that is called before the documents start to load. Is