Hacker News new | ask | show | jobs
by postfuturist 5679 days ago
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?

1 comments

//- (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. :)