Where are temporary documents stored until saved?

2012-12-30 Thread Rick Mann
Wow, Googling for this is hard. I've got a problem that prevents me from closing a document in my OS X app. Unfortunately, each time I re-launch, the same docs open, with all the data they contained before. I just want to delete these documents. For that matter, I'd rather they didn't auto-save

Re: Where are temporary documents stored until saved?

2012-12-30 Thread Rick Mann
Nevermind, I found it. ~/Library/Autosave Information/ On Dec 30, 2012, at 2:56 , Rick Mann wrote: > Wow, Googling for this is hard. > > I've got a problem that prevents me from closing a document in my OS X app. > Unfortunately, each time I re-launch, the same docs open, with all the data >

Re: Where are temporary documents stored until saved?

2012-12-30 Thread Simone Tellini
Il giorno 30/dic/2012, alle ore 12:07, Rick Mann ha scritto: >> they contained before. I just want to delete these documents. For that >> matter, I'd rather they didn't auto-save at all during development (or >> auto-restore, or whatever the terminology is). so why don't you just disable au

Visualised constraint colours

2012-12-30 Thread iain
Hi What do the colours mean when visualised by calling -visualizeConstraints: ? My working layout has 4 blue constraints but my broken layout has 2 blue and 2 red but all 4 of those constraints seem incorrect (although they're the same constraints as the working layout) so I don't want to assu

Re: Bound NSTextField displays Selection Placeholder instead of Null Placeholder

2012-12-30 Thread Keary Suska
On Dec 29, 2012, at 3:16 PM, Quincey Morris wrote: > Well, I have part of the answer. I think there are 2 bugs, though it's not > entirely clear. > > AFAICT, the reason it's showing the No Selection placeholder is roundabout. > It *isn't* displaying the No Selection placeholder as a result of

Re: Where are temporary documents stored until saved?

2012-12-30 Thread Kyle Sluder
On Dec 30, 2012, at 3:18 AM, Simone Tellini wrote: > > Il giorno 30/dic/2012, alle ore 12:07, Rick Mann ha > scritto: > >>> they contained before. I just want to delete these documents. For that >>> matter, I'd rather they didn't auto-save at all during development (or >>> auto-restore, or

Re: Finder Source List Icons

2012-12-30 Thread koko
Thanks to all … and Happy New Year ! -koko On Dec 29, 2012, at 11:36 PM, Charles Srstka wrote: > On Dec 29, 2012, at 10:46 PM, koko wrote: > >> Are the icons in the Finders Source List available to developer apps or does >> the developer have to capture and photoshop them? > > The icons for

Re: Where are temporary documents stored until saved?

2012-12-30 Thread Joar Wingfors
You can turn this off for your debug runs using: Product > Edit Scheme... > Run > Options > Persistent State: Launch app without state restoration Joar On 30 dec 2012, at 02:56, Rick Mann wrote: > Wow, Googling for this is hard. > > I've got a problem that prevents me from closing a

Re: Where are temporary documents stored until saved?

2012-12-30 Thread Rick Mann
Oh that's perfect! Sent from my iPhone On Dec 30, 2012, at 9:51, Joar Wingfors wrote: > You can turn this off for your debug runs using: > >Product > Edit Scheme... > Run > Options > Persistent State: Launch app > without state restoration > > Joar > > > On 30 dec 2012, at 02:56, Rick

Re: Finder Source List Icons

2012-12-30 Thread Charles Srstka
On Dec 30, 2012, at 12:36 AM, Charles Srstka wrote: > LSSharedFileListRef list = LSSharedFileListCreate(kCFAllocatorDefault, > kLSSharedFileListFavoriteItems, NULL); > NSArray *items = CFBridgingRelease(LSSharedFileListCopySnapshot(list, NULL)); > > for (id eachItem in items) { >IconRef ico

BAse localisation and strings files compatibility with 10.7

2012-12-30 Thread Antonio Nunes
I'm considering moving (part of) an existing project to using a base localisation, with nibs only for the base language, and strings files to localise for other languages. I can't find in the documentation whether this feature is compatible with 10.7. I think it is, but I'm not sure, and can't

Re: "New" busy cursor in the Finder

2012-12-30 Thread lordpixel
On Dec 20, 2012, at 2:30 PM, Eric Schlegel wrote: > > On Dec 19, 2012, at 8:03 PM, lordpi...@mac.com wrote: > >> I noticed recently that the Finder has a "new" very nice looking animated >> busy cursor, which you can see here: >> https://dl.dropbox.com/u/45534011/BusyCursor.png [snip] > > Y

Binding NSTableView columns to dynamic properties in Core Data?

2012-12-30 Thread Rick Mann
I'm not sure if this is possible with bindings and Core Data, or how much glue code I'm going to have to write to do this, but I thought I'd ask to see if anyone else has done anything like this. I want to display a table view with a set of columns that's not known at compile time, but rather a

Re: Binding NSTableView columns to dynamic properties in Core Data?

2012-12-30 Thread Keary Suska
On Dec 30, 2012, at 8:35 PM, Rick Mann wrote: > I'm not sure if this is possible with bindings and Core Data, or how much > glue code I'm going to have to write to do this, but I thought I'd ask to see > if anyone else has done anything like this. > > I want to display a table view with a set o

Re: Binding NSTableView columns to dynamic properties in Core Data?

2012-12-30 Thread Rick Mann
On Dec 30, 2012, at 20:08 , Keary Suska wrote: > It seems to me that the amount of work involved in maintaining the bindings > would be more troublesome than simply using data source methods. You would > also have much more control as well. I have done basically what you are > thinking in the

Re: Bound NSTextField displays Selection Placeholder instead of Null Placeholder

2012-12-30 Thread Quincey Morris
On Dec 30, 2012, at 07:59 , Keary Suska wrote: > I am not sure I am experiencing this bug, if I understand you correctly. I > can change the binding placeholder string and the bug will show the new > changed placeholder string. Changing the text field placeholder string, > however, does not ap