Re: start in NSOperation

2014-01-06 Thread Gerriet M. Denkmann
On 7 Jan 2014, at 10:03, Jens Alfke wrote: > > On Jan 6, 2014, at 5:54 PM, Gerriet M. Denkmann wrote: > >>> Turn on -Woverriding-method-mismatch >> >> How to do this in Xcode? > > Add it in “Additional Warning Flags” in the build settings. Or add the line to something.xcconfig: WARNING_CF

Re: start in NSOperation

2014-01-06 Thread Jens Alfke
On Jan 6, 2014, at 5:54 PM, Gerriet M. Denkmann wrote: >> Turn on -Woverriding-method-mismatch > > How to do this in Xcode? Add it in “Additional Warning Flags” in the build settings. —Jens ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Pl

Re: start in NSOperation

2014-01-06 Thread Gerriet M. Denkmann
On 7 Jan 2014, at 03:00, glenn andreas wrote: > > Turn on -Woverriding-method-mismatch How to do this in Xcode? Gerriet. ___ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list.

Re: start in NSOperation

2014-01-06 Thread Kyle Sluder
On Mon, Jan 6, 2014, at 03:04 PM, Greg Parker wrote: > On Jan 6, 2014, at 8:52 AM, Kyle Sluder wrote: > > On Mon, Jan 6, 2014, at 02:39 AM, Roland King wrote: > >> since the return type isn't part of the > >> signature of a method, overriding it with start which takes no parameters > >> and return

Re: How is my CFRunLoopTimer getting called during a CFReadStream client callback? ANSWER

2014-01-06 Thread Roland King
On 7 Jan, 2014, at 5:40 am, Fritz Anderson wrote: > On 5 Jan 2014, at 8:31 PM, Jim O'Connor wrote: > >> XCode hides stack frames it thinks are unimportant. >> Like the stack frame that had the CFRunLoop in it inside a >> CFMessagePortSendRequest. >> >> I found the problem when I copied out t

Re: start in NSOperation

2014-01-06 Thread Greg Parker
On Jan 6, 2014, at 8:52 AM, Kyle Sluder wrote: > On Mon, Jan 6, 2014, at 02:39 AM, Roland King wrote: >> since the return type isn't part of the >> signature of a method, overriding it with start which takes no parameters >> and returns an integer is allowed > > I found this unbelievable, but the

Re: How is my CFRunLoopTimer getting called during a CFReadStream client callback? ANSWER

2014-01-06 Thread Fritz Anderson
On 5 Jan 2014, at 8:31 PM, Jim O'Connor wrote: > XCode hides stack frames it thinks are unimportant. > Like the stack frame that had the CFRunLoop in it inside a > CFMessagePortSendRequest. > > I found the problem when I copied out the stack crawl to show a friend, and > low and behold there w

Re: ioscomponents.com - reloaded!

2014-01-06 Thread Uli Kusterer
On 06 Jan 2014, at 17:24, dangerwillrobinsondan...@gmail.com wrote: > Your layout is pretty broken on iOS 7 in Safari on a Retina Display iPad. Don’t even need that. On Safari/Mac, just make your window narrower and watch it get progressively worse. Cheers, -- Uli Kusterer “The Witnesses of Tea

Re: start in NSOperation

2014-01-06 Thread glenn andreas
Turn on -Woverriding-method-mismatch $ xcrun clang --version Apple LLVM version 5.0 (clang-500.2.79) (based on LLVM 3.3svn) Target: x86_64-apple-darwin13.0.0 Thread model: posix $ cat return.m #import @interface ClassA :NSObject - (void) foo; @end @interface ClassB : ClassA - (int) foo; @end

Re: How is my CFRunLoopTimer getting called during a CFReadStream client callback? ANSWER

2014-01-06 Thread Jens Alfke
On Jan 5, 2014, at 6:31 PM, Jim O'Connor wrote: > XCode hides stack frames it thinks are unimportant. Drag the slider at the bottom of the debug navigator all the way to the right, to stop Xcode from doing this (in that project.) —Jens ___ Cocoa-de

Re: Auto Layout with NSSplitView, NSScrollView

2014-01-06 Thread Fritz Anderson
On 4 Jan 2014, at 1:38 PM, thatsanicehatyouh...@me.com wrote: I like your user name. > I have a couple of questions about using auto layout (AL) with NSSplitView > and NSScrollView. I have watched the (excellent) WWDC videos from 2012, but > am having problems. > > I'm trying to implement an N

Re: start in NSOperation

2014-01-06 Thread Kyle Sluder
On Mon, Jan 6, 2014, at 02:39 AM, Roland King wrote: > since the return type isn't part of the > signature of a method, overriding it with start which takes no parameters > and returns an integer is allowed I found this unbelievable, but then I wrote a test and confirmed it is true. That's insane

Re: ioscomponents.com - reloaded!

2014-01-06 Thread dangerwillrobinsondanger
Your layout is pretty broken on iOS 7 in Safari on a Retina Display iPad. In all, it looks ver Microsofty. It's probably also unnecessary to repeat your URL so many times in one email. Sent from my iPad > On 2014/01/06, at 22:26, Jason Gibbs wrote: > > *Hi Everyone - a few months ago, I h

Bad refresh on NSTextView over other rotated view

2014-01-06 Thread Leonardo
When I edit the NSTextView text, I get this bad refresh (see image linked here below) only when the red NSView below is rotated. https://sites.google.com/site/maciphonedev/image1 Please note, the NSTextView is placed "over" the red NSView. So I should never see the red color within the NSTextView

Re: libcrypto linking problem in Leopard

2014-01-06 Thread Gary L. Wade
There's lots of hurt trying to support that old. One thing that changed from 10.5 to 10.6 is some linking options so the dylibs are different. I tried to do the same thing you're trying for the sake of "cross-platform compatibility," and I found it more resolvable to just factor out those calls

Re: libcrypto linking problem in Leopard

2014-01-06 Thread Appa Rao Mulpuri
Hi Dave, Able to change the path in the Mach O with the Install_name_tool, but while launching the app, it is checking the compatibility version and failing to launch. Here is the Otool output: /usr/lib/libcrypto.0.9.7.dylib (compatibility version 0.9.8, current version 47.2.0) Regards, Appar

ioscomponents.com - reloaded!

2014-01-06 Thread Jason Gibbs
*Hi Everyone - a few months ago, I had come on to this group to introduce our new component library for iOS - iOSComponents.com. Some of you gave us some pretty constructive (and may I add, brutally honest) feedback. On basis of that, we’ve completely redesigned our website. We’ve also added numero

Re: CVPixelBufferCreateWithPlanarBytes does not execute callback when released

2014-01-06 Thread James Montgomerie
I'm not an expert on planar video formats, but I tried out your code anyway and noticed that if I pass a non-NULL value as the dataPtr parameter then the callback gets called. Jamie. On 5 Jan 2014, at 11:04, Matthieu Bouron wrote: > On Mon, Nov 25, 2013 at 12:45 PM, Matthieu Bouron > wrote:

Re: start in NSOperation

2014-01-06 Thread Roland King
> > When I changed the property from "start" to "stArt" then all became fine. > Obviously "start" is a word one should not use with NSOperations (no idea > why). > Because start is a defined method on NSOperation which starts the operation, it's in the documentation, go take a look. It takes

start in NSOperation

2014-01-06 Thread Gerriet M. Denkmann
MyOperation is a subclass of NSOperation: #import "MyOperation.h" @interface MyOperation() @property (assign) NSUInteger start; @end @implementation MyOperation - initWithStart:(NSUInteger)s ; { self = [ super init ]; if ( self == nil ) return nil;