Re: Core Data : Opt Out of SQLite WAL is nullified after File > Duplicate ?

2014-01-26 Thread Glenn L. Austin
On Jan 25, 2014, at 2:23 PM, Mike Abdullah wrote: > Presently BSManagedDocument is set up to configure Core Data to use the > old-style journal (as I still support 10.6). However, the more I read on the > subject, the more I wonder if this is worth it. Since the actual persistent > store is k

Re: NSTableView end editing keep same First Responder

2014-01-26 Thread Trygve Inda
Hitting return results in the Table losing focus, the selected row highlight turns grey and controlTextDidEndEditing is never called. Upon further research, it only does this when the column being edited is included in the sort descriptors for the table view. __

NSTableView end editing keep same First Responder

2014-01-26 Thread Trygve Inda
If I highlight a row in my NSTableView it turns blue and I can edit individual cells. Tab jumps to the next column. When I hit return however, the row turns grey and the table loses first responder status. I receive a proper controlTextDidBeginEditing once an edit takes place (ie adding or deleti

Finding events

2014-01-26 Thread Gideon King
When users save a document, I want to save a reference to an event in the file. Then when they open the document on either the same machine or another one, I want them to have access to the same event. There appear to be three things that could be saved: - eventIdentifier - calendarItemIdentifie

Re: NSCollectionView horizontal scrolling problem

2014-01-26 Thread Lee Ann Rucker
It's been a while since I did this, but you may need to adjust setMinItemSize: too. collectionView likes to resize its frame to fit its contents and vice-versa; the frame size you set will not persist. - Original Message - From: "Livio Isaia" To: "Cocoa Dev List" Sent: Sunday, January

Re: NSCollectionView horizontal scrolling problem

2014-01-26 Thread Jens Alfke
On Jan 26, 2014, at 4:47 AM, Livio Isaia wrote: > but the NSCollectionView doesn’t enable horizontal scrolling (of course I > have NSScrollView->NSClipView->NSCollectionView). It's the scrollview that does the scrolling, not the collection view. I'll admit that getting scrollviews to work cor

UIDocumentInteractionController open-in multiple UTIs

2014-01-26 Thread Markus Spoettl
Hi, my iOS 7 app shares data with other apps on the device using UIDocumentInteractionController's openIn. Works fine. The problem is that I'd like to share different file formats (all of which are declared and exported by UTIs from our app), depending on which app is the recipient. I tr

NSCollectionView horizontal scrolling problem

2014-01-26 Thread Livio Isaia
Hi all, I have a NSCollectionView that displays some NSView objects in one column only. Now I want to programmatically increase the width of one (or all) object to show more details in it, so: [myObject setFrameSize:newSize]; [collectionView setFrameSize:newSize]; but the NSCollectionView does