Re: Finder-like user interface?

2015-12-30 Thread Andreas Mayer
> Am 27.12.2015 um 23:45 schrieb SevenBits : > > NSCollectionView appears to suffice, and I’ve used it before, but it simply > isn’t performant as it doesn’t reuse cells, NSCollectionView does reuse cells when you use the new API available in 10.11. I find it quite

Re: Custom UIViewController transitions with segues

2015-12-30 Thread Rick Mann
> On Dec 30, 2015, at 18:14 , Roland King wrote: > > >> On 31 Dec 2015, at 09:12, Rick Mann wrote: >> >> I have a UICollectionView in a UINavigationController, and I'd like to >> customize the transition from one to the next on push. So I set up the

Re: Custom UIViewController transitions with segues

2015-12-30 Thread Roland King
> On 31 Dec 2015, at 09:12, Rick Mann wrote: > > I have a UICollectionView in a UINavigationController, and I'd like to > customize the transition from one to the next on push. So I set up the first > VC as UIViewControllerTransitioningDelegate, and in >

Re: Custom UIViewController transitions with segues

2015-12-30 Thread Rick Mann
> On Dec 30, 2015, at 18:20 , Rick Mann wrote: > > >> On Dec 30, 2015, at 18:14 , Roland King wrote: >> >> >>> On 31 Dec 2015, at 09:12, Rick Mann wrote: >>> >>> I have a UICollectionView in a UINavigationController, and I'd

Re: CG Error with popovers - known issue?

2015-12-30 Thread Graham Cox
> On 31 Dec 2015, at 9:32 AM, Jonathan Mitchell wrote: > > I am seeing the exact same issue with NSPopover on 10.11. > The stack trace is identical. > Did you manage to make any further progress with this? > Not really. I was able to determine that the error is

Re: CG Error with popovers - known issue?

2015-12-30 Thread Jonathan Mitchell
HI Graham I am seeing the exact same issue with NSPopover on 10.11. The stack trace is identical. Did you manage to make any further progress with this? Thanks Jonathan > On 9 Dec 2015, at 22:42, Graham Cox wrote: > > I’m getting this message logged when I show a

Custom UIViewController transitions with segues

2015-12-30 Thread Rick Mann
I have a UICollectionView in a UINavigationController, and I'd like to customize the transition from one to the next on push. So I set up the first VC as UIViewControllerTransitioningDelegate, and in prepareForSegue(_:sender:) set the destination VC's transitioningDelegate to self. But my

Re: Custom UIViewController transitions with segues

2015-12-30 Thread Sixten Otto
Are you maybe looking for the UINavigationControllerDelegate method that lets you provide an animation controller for the push? That appears to be the way one hooks into the operation of the navigation controller in order to override the default animations.

Re: Getting the final value from an NSSlider drag

2015-12-30 Thread Doug Hill
> On Dec 29, 2015, at 3:31 PM, Roland King wrote: > >> >> If you want to know when the last value is sent during mouse tracking, set >> the ‘actionOn’ property to mouse-up. >> >> So, something like this: >> >> - (void)viewDidLoad >> { >>[super viewDidLoad]; >> >>