Re: NSArrayController + NSTableView addObject ends editing

2013-12-25 Thread Quincey Morris
On Dec 24, 2013, at 23:47 , Trygve Inda cocoa...@xericdesign.com wrote: The reloading seem to kill the edit session no matter what I do. FWIW, in the TableViewPlayground sample app, it’s possible to start editing in a cell (in the Complex Table View window) and it stays editable when adding

Re: dataWithPDFInsideRect returns raster text

2013-12-25 Thread Leonardo
Hi Leo, I have found the error. When saving the pdf I use a quartz filter to compress the document. In this filter I have keyOutputCondition/key stringCGATS TR 001 SWOP/string keyOutputConditionIdentifier/key stringCGATS TR 001/string If I remove the lines keyOutputConditionIdentifier/key

NSURLSession + Bonjour to do peer-to-peer file transfers?

2013-12-25 Thread Eric Wing
Is it possible to use NSURLSession + Bonjour to do peer-to-peer like file transfers? My example situation is that I have a Mac and iPhone. The iPhone has a generated file I want to copy over to the Mac through the wireless. I can publish my iPhone via Bonjour and make my Mac discover and resolve

Re: NSURLSession + Bonjour to do peer-to-peer file transfers?

2013-12-25 Thread Stephen J. Butler
NSURLSession is a fancy HTTP client. It needs to talk to an HTTP server. None of the included iOS and OS X frameworks (that I'm aware of) include an HTTP server. You can either run an HTTP server on the device in your app ( https://www.google.com/search?q=ios+http+server) or you can write your

Re: Sandboxing: Can't bookmark enclosing folder of user-selected file

2013-12-25 Thread Leo
___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription:

Re: comboBoxSelectionDidChange not called

2013-12-25 Thread Jerry Krinock
Scott, I’ve never used this comboBoxSelectionDidChange:, but since you’ve mis-typed the method name twice now, I thought I should remind you that your implementation won’t be invoked unless its name ends in a colon. ___ Cocoa-dev mailing list