Re: Weird crash in FSRefCreate while saving NSDocument

2014-11-25 Thread Markus Spoettl
On 24/11/14 14:54, Scott Ribe wrote: So I have no idea if this is related or not. But a few things for you to possibly find out: is there a lot of file manipulation being done on that Mac, is performance of everything sluggish before this happens, and will it work after a reboot. My user says h

Re: Weird crash in FSRefCreate while saving NSDocument

2014-11-25 Thread Scott Ribe
On Nov 25, 2014, at 1:26 AM, Markus Spoettl wrote: > > My user says he doesn't experience sluggishness, he also tried rebooting the > machine and repair the disk permissions. Still crashes reliably every time. In that case, I'd personally suspect heap corruption. -- Scott Ribe scott_r...@elev

Re: Weird crash in FSRefCreate while saving NSDocument

2014-11-25 Thread Markus Spoettl
On 25/11/14 15:28, Scott Ribe wrote: On Nov 25, 2014, at 1:26 AM, Markus Spoettl wrote: My user says he doesn't experience sluggishness, he also tried rebooting the machine and repair the disk permissions. Still crashes reliably every time. In that case, I'd personally suspect heap corrupti

Re: Weird crash in FSRefCreate while saving NSDocument

2014-11-25 Thread Scott Ribe
On Nov 25, 2014, at 9:27 AM, Markus Spoettl wrote: > > That hits only one user out of many? All the time, whenever he uses it, and > no one else. Caused by other apps or ours? All good points. I'd certainly want a system profile, to examine both it and the crash report for any 3rd-party kexts

Altering the size of UISlider's “slider ball”

2014-11-25 Thread Carl Hoefs
iOS 8 Is there some way (in IB or programmatically) to alter the size of the “slider ball” of a UISlider? -Carl ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the mo

Re: Altering the size of UISlider's “slider ball”

2014-11-25 Thread Roland King
> On 26 Nov 2014, at 9:58 am, Carl Hoefs wrote: > > iOS 8 > Is there some way (in IB or programmatically) to alter the size of the > “slider ball” of a UISlider? > -Carl > You can’t specify the size of it, no, but you can make an image of your own the size, shape and colour you want and repl

when has AutoLayout finished its work?

2014-11-25 Thread Gerriet M. Denkmann
Document based Cocoa app; Window has CustomView inside ScrollView; uses autolayout. 10.10.1 Problem: the autolayout stuff keeps butting in and setting the frameSize of my CustomView to (0,0). So I need some method like: autolayoutHasFinishedItsWork, but cannot find such. windowDidLoad of DaysW

Re: Altering the size of UISlider's “slider ball”

2014-11-25 Thread Carl Hoefs
> On Nov 25, 2014, at 6:10 PM, Roland King wrote: > >> On 26 Nov 2014, at 9:58 am, Carl Hoefs >> wrote: >> >> iOS 8 >> Is there some way (in IB or programmatically) to alter the size of the >> “slider ball” of a UISlider? >> -Carl >> > You can’t specify the size of it, no, but you can make

Re: when has AutoLayout finished its work?

2014-11-25 Thread Ken Thomases
On Nov 25, 2014, at 11:50 PM, Gerriet M. Denkmann wrote: > Document based Cocoa app; Window has CustomView inside ScrollView; uses > autolayout. 10.10.1 > > Problem: the autolayout stuff keeps butting in and setting the frameSize of > my CustomView to (0,0). > > So I need some method like: au

Re: when has AutoLayout finished its work?

2014-11-25 Thread Gerriet M. Denkmann
> On 26 Nov 2014, at 13:15, Ken Thomases wrote: > > On Nov 25, 2014, at 11:50 PM, Gerriet M. Denkmann > wrote: > >> Document based Cocoa app; Window has CustomView inside ScrollView; uses >> autolayout. 10.10.1 >> >> Problem: the autolayout stuff keeps butting in and setting the frameSize o