1
0
mirror of https://github.com/strawberrymusicplayer/strawberry synced 2024-12-20 12:42:57 +01:00
strawberry-audio-player-win.../3rdparty/SPMediaKeyTap/SPInvocationGrabbing/gistfile4.m
2018-07-01 22:24:23 +02:00

13 lines
385 B
Objective-C

@interface MyClass : NSObject
-(BOOL)areTheNewViewersGoneYet:(Duck*)duck;
@end
...
MyClass *myInstance = [[MyClass alloc] init];
id invocationGrabber = [[[SPInvocationGrabber alloc] initWithTarget:myInstance] autorelease];
[invocationGrabber areTheNewViewersGoneYet:[Duck yellowDuck]]; // line 9
NSInvocation *invocationForAreTheNewViewersGoneYet = [invocationGrabber invocation];