Adding a GPS to a Mac for Core Location?

2014-09-16 Thread Rick Mann
Is it possible to add an external GPS to a Mac such that Core Location will use it? -- Rick Mann rm...@latencyzero.com ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Cont

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Raglan T. Tiger
On Sep 16, 2014, at 5:50 PM, Alex Zavatone wrote: > All I want is to turn off that distracting NSOutline expand/collapse > animation all the time, everywhere. So useless and certainly distracting. > Certainly doesn't make my UI any faster or enhance my user experience. > > If anyone knows how

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Alex Kac
Just wait - next year we’ll have a “Modern AppKit” rewritten for Swift and to be more like UIKit. I keep hoping. > On Sep 16, 2014, at 5:48 PM, Jerry Krinock wrote: > > Weird that here we are with the Apple Watch and Swift, and old NSOutlineView > still doesn’t work as it should. Alex Kac - P

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Alex Zavatone
All I want is to turn off that distracting NSOutline expand/collapse animation all the time, everywhere. So useless and certainly distracting. Certainly doesn't make my UI any faster or enhance my user experience. If anyone knows how, I'll gladly mail them 50 bucks. Is there an NSUserDefaults

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Jerry Krinock
On 2014 Sep 16, at 15:23, Kyle Sluder wrote: > I'd try wrapping things in an NSAnimationContext with > allowsImplicitAnimation=NO. Though I'm not sure where you would have the > opportunity to wrap the built-in expand behavior. Yes, I’ve never understood “graphics contexts” and its new friend

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Kyle Sluder
On Tue, Sep 16, 2014, at 05:04 PM, Jerry Krinock wrote: > > > On 2014 Sep 16, at 10:29, Jens Alfke wrote: > > > > Maybe it's the animation that ends up dereferencing all the rows? I forget > > whether there's a way to disable the animations on an NSOutlineView … > > I can’t find any such contr

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Jerry Krinock
> On 2014 Sep 16, at 10:29, Jens Alfke wrote: > > Maybe it's the animation that ends up dereferencing all the rows? I forget > whether there's a way to disable the animations on an NSOutlineView … I can’t find any such control, Jens. * * * Apparently, *someone* inside Apple knows how to make

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Jens Alfke
> On Sep 16, 2014, at 10:23 AM, Jerry Krinock wrote: > > Apparently it’s the *expand* operation which is not smart enough to realize > the small number of items that can be displayed. (So I guess you would not > see this behavior in a table view.) Maybe there is a technical reason for > thi

Re: NSOutlineView not lazy when expanding items :(

2014-09-16 Thread Jerry Krinock
> On 2014 Sep 16, at 06:13, SevenBits wrote: > > Could you perhaps upload the source? I'd like to take a look at this, as I am > trying to do something like this as well. Here you go… https://github.com/jerrykrinock/NSOutlineViewLazinessDemo Unfortunately, it was easy to reproduce the proble

Heavy flickering on Retina Macs with Yosemite & NSVisualEffectView & overlay windows

2014-09-16 Thread Markus Spoettl
Hello, using Yosemite DP8 (first tested and observed with DP7), we get very heavy flickering when animating a popup overlay window over a window whose content consists of views sitting on NSVisualEffectViews (NSVisualEffectBlendingModeWithinWindow) and with a transparent window title bar a

Re: Still need help with Services. Is there sample code?

2014-09-16 Thread Keary Suska
On Sep 16, 2014, at 6:22 AM, Daryle Walker wrote: > Still can’t get my Service to trigger. > >> daryle$ /Applications/TextEdit.app/Contents/MacOS/TextEdit -NSDebugServices >> io.github.me.MyApp >> 2014-09-16 08:00:58.493 TextEdit[546:507] NSDebugServices=io.github.me.MyApp >> Open URL (io.githu

Re: Want NSTableView NSOutlineView to load lazy like iOS?

2014-09-16 Thread SevenBits
On Tue, Sep 16, 2014 at 2:25 AM, Jerry Krinock wrote: > Well, I made a little demo project containing an NSOutlineView, cell-based > with two text cell/columns, connected data source to app delegate, and in > there implemented data source methods to supply 1000 items to the root. > > Result: Beha

Still need help with Services. Is there sample code?

2014-09-16 Thread Daryle Walker
Still can’t get my Service to trigger. > daryle$ /Applications/TextEdit.app/Contents/MacOS/TextEdit -NSDebugServices > io.github.me.MyApp > 2014-09-16 08:00:58.493 TextEdit[546:507] NSDebugServices=io.github.me.MyApp > Open URL (io.github.me.MyApp) is explicitly enabled in the services menu and

Re: Nib unloading and ARC

2014-09-16 Thread Jonathan Mitchell
On 15 Sep 2014, at 23:16, Ken Thomases wrote: > On Sep 15, 2014, at 5:00 PM, Jonathan Mitchell > wrote: > >> Or should I refactor to make each NIB owner an NSViewController instance? > > Yes. > > From the release notes when NSViewController was originally introduced: > https://developer.app