Re: Strange issue with NSPanel @"visible" keypath & observeValueForKeyPath

2011-09-10 Thread vade
Indeed you are correct, I confused the fact that because the binding is available, that KVO would be available on the same key, which is not strictly true or required. I decided to use binding instead, and while that seemed like it should have worked, it did not on 10.6.8, so I just ended up su

Submitting Mac App to the App Store

2011-09-10 Thread R
Wow, what a configuration mess for the new programmer. Is there anyone that has submitted a Mac App to the App Store willing to explain the procedure.. including the Validating Mac App Store Receipts process. I'm about to give up and call Apple. http://developer.apple.com/library/mac/#releasenot

Re: Submitting Mac App to the App Store

2011-09-10 Thread Indragie Karunaratne
https://github.com/nickpaulson/NPReceiptVerification Should simplify this procedure quite a bit. On 2011-09-10, at 2:28 PM, R wrote: > Wow, what a configuration mess for the new programmer. > > Is there anyone that has submitted a Mac App to the App Store willing > to explain the procedure.. in

Re: Submitting Mac App to the App Store

2011-09-10 Thread Indragie Karunaratne
https://github.com/nickpaulson/NPReceiptVerification Should simplify this procedure quite a bit. On 2011-09-10, at 2:28 PM, R wrote: > Wow, what a configuration mess for the new programmer. > > Is there anyone that has submitted a Mac App to the App Store willing > to explain the procedure.. in

Re: Submitting Mac App to the App Store

2011-09-10 Thread Todd Heberlein
On Sep 10, 2011, at 1:28 PM, R wrote: > including the Validating Mac App Store > Receipts process. I've removed validating Mac App Store receipts from my code. In general, for at least your first release, I would not worry about DRM. If you think your first release is going to be so popular th

OutlineView, drop between rows?

2011-09-10 Thread John Velman
OSX, using Xcode 4. In my outline view drag and drop I'd like to be able to drop between rows (at any level). This only seems possible if the item on the row above has no children. I have a custom container tree node in my model, with bindings via an NSTreeController. I've implemented a data sou

NSBezierPath HiDPI

2011-09-10 Thread Steven Spencer
Hello, What is the correct way to draw a pixel aligned bezier path for HiDPI display modes ? I've got the following code to draw a rounded rectangle in both standard 1440x900 and HiDPI 720x450 resolutions, though it seems overly complex. Is there a simpler solution, perhaps an api method ? I h

Re: OutlineView, drop between rows?

2011-09-10 Thread Jerry Krinock
On 2011 Sep 10, at 16:28, John Velman wrote: > In principle, I could change the target in outlineView:validateDrop… but the > built in "line with circle on the left end" would still indicate it was > dropping on a child. No, the "line with circle on the left end" indicates that the user is dro

Re: OutlineView, drop between rows?

2011-09-10 Thread John Velman
Well, this isn't the first time I've felt stupid. I had thought it should work that way, but I wasn't dragging _far_enough_ to the left. Thanks for setting me straight! John V. On Sat, Sep 10, 2011 at 08:00:30PM -0700, Jerry Krinock wrote: > > On 2011 Sep 10, at 16:28, John Velman wrote: > >