Re: Looking at self = [super init].

2015-05-31 Thread Steve Christensen
No, it doesn't make a difference. In both cases the compiler will generate a "test and branch" to the method's epilogue. For the "=" case: if (self = [super init]) ... is equivalent to: if ((self = [super init]) != nil) ... is equivalent to: self = [super init];

Re: How to get bold and plain fonts?

2015-05-31 Thread Graham Cox
> On 31 May 2015, at 4:43 pm, Roland King wrote: > >> >> So, TL;DR: how do I find the Font Family name(s) corresponding to an >> arbitrary list of NSFontDescriptors from a font collection? >> >> —Graham >> >> > > just looking at the docs for NSFontDescriptor I would guess > > [ font

Re: NSPathControl

2015-05-31 Thread Jack Brindle
Oops, not any more. clickedPathComponentCell was deprecated in Yosemite. Instead, look at the URL property. Valid back to 10.5. > On May 27, 2015, at 3:43 PM, Lee Ann Rucker wrote: > > > On May 27, 2015, at 2:55 PM, Jens Alfke wrote: > >> >>> On May 27, 2015, at 2:46 PM, Raglan T. Tiger

Re: [PSA] OSStatus.com -- Error code lookup

2015-05-31 Thread Ben Kennedy
Pardon my thickness, but what is the purpose of the "utf8" parameter anyway? Removing it from the query string appears to have no material impact on the results: http://www.osstatus.com/search/results?search=-43 b > On 31 May 2015, at 5:58 am, Uli Kusterer wrote: > > On 31 May 2015, at 13:24

Re: [PSA] OSStatus.com -- Error code lookup

2015-05-31 Thread Uli Kusterer
On 31 May 2015, at 13:24, Kevin Meaney wrote: > Thanks for this. It is a great resource. I just tried to embed a link to a > search for all the CoreVideo error codes into a tweet, but twitter doesn’t > like the tick mark as a character in a url. Can you change that? I had the same issue trying

Re: [PSA] OSStatus.com -- Error code lookup

2015-05-31 Thread Kevin Meaney
Hi Seth, Thanks for this. It is a great resource. I just tried to embed a link to a search for all the CoreVideo error codes into a tweet, but twitter doesn’t like the tick mark as a character in a url. Can you change that? Kevin > On 31 May 2015, at 05:46, Michael David Crawford wrote: > >