darling-cocotron/AppKit/NSMovieView.m
2020-07-18 08:41:35 -07:00

15 lines
355 B
Objective-C

#import <AppKit/NSMovieView.h>
@implementation NSMovieView
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
{
return [NSMethodSignature signatureWithObjCTypes: "v@:"];
}
- (void)forwardInvocation:(NSInvocation *)anInvocation
{
NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]);
}
@end