Hacker News new | ask | show | jobs
by dizm 5679 days ago
SNTouch.m is one example with stubbed out class-dump methods.

The naming in every place that it can is lifted directly from UIKit, and then their changes use different naming conventions. For example the new instance variables in NSView.h.

1 comments

Which methods in this SNTouch.m ( https://github.com/deliciousrobots/gnustep-gui-sony/blob/mas... ) are stubbed out class-dump methods and what UIKit class do they come from?

Where were the new instance variables in NSView.h copied from? I've been comparing them to class-dumps ( http://code.google.com/p/iphone-dev/source/browse/#svn/trunk... ) of Apple's code and I don't see anything like what you are describing. Care to show some examples?

//- (struct CGPoint)locationInView:(id)fp8;

That line (and the one later for previousLocationInView:) is straightforward "class-dump output". Did you bother to look at the file? :(

Yes, that's a comment, not a stub, but I get it now. :)