Re: Crash while resizing window

2014-10-01 Thread Graham Cox
On 29 Sep 2014, at 10:43 am, Andreas Mayer wrote: > Specifically, it is the Sepia filter that crashes. Other filters exhibit odd > behavior, like ever more pixellated output. > > Are there documented limitations in respect to CIFilters and transforms? Well, there are common-sense limitations

Re: Responder chain and cancelOperation:, how to forward on?

2014-10-01 Thread Felix Franz
On 01.10.2014, at 19:39, Sean McBride wrote: > Hi all, > > I have a custom view which implements cancelOperation: (from NSResponder). > Depending on the view's internal state it sometimes responds to the escape > key (and sometimes doesn't). When it doesn't respond, I want to pass the > mes

Responder chain and cancelOperation:, how to forward on?

2014-10-01 Thread Sean McBride
Hi all, I have a custom view which implements cancelOperation: (from NSResponder). Depending on the view's internal state it sometimes responds to the escape key (and sometimes doesn't). When it doesn't respond, I want to pass the message along the responder chain. But calling either [super

Re: Can a 32bit only MacOS Application use 64bit-only Frameworks?

2014-10-01 Thread Clark S. Cox III
We couldn't provide the new runtime for 32-bit Intel (or PowerPC, for that matter) because that would break compatibility with all existing code. 32-bit arm didn't have that issue because the only existing code that mattered was Apple's own apps, and we could easily recompile those. Sent from m

Re: Can a 32bit only MacOS Application use 64bit-only Frameworks?

2014-10-01 Thread Mike Abdullah
On 1 Oct 2014, at 09:53, Motti Shneor wrote: > Thank you Clark and Mike for the answer. I finally figured it out myself > getting enough link errors. > > One small question though. How is it the new ObjC runtime (ARC and all...) > works fine on 32bit iOS builds, but not on Mac? Why did apple

Re: Can a 32bit only MacOS Application use 64bit-only Frameworks?

2014-10-01 Thread Motti Shneor
Thank you Clark and Mike for the answer. I finally figured it out myself getting enough link errors. One small question though. How is it the new ObjC runtime (ARC and all...) works fine on 32bit iOS builds, but not on Mac? Why did apple not deliver the runtime for the Mac? Is it so different?