mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2025-02-17 01:58:20 +00:00
19 lines
401 B
Objective-C
19 lines
401 B
Objective-C
#import <Foundation/NSObject.h>
|
|
|
|
@interface CATransformLayer : NSObject
|
|
@end
|
|
|
|
@implementation CATransformLayer
|
|
|
|
- (NSMethodSignature *)methodSignatureForSelector:(SEL)aSelector
|
|
{
|
|
return [NSMethodSignature signatureWithObjCTypes: "v@:"];
|
|
}
|
|
|
|
- (void)forwardInvocation:(NSInvocation *)anInvocation
|
|
{
|
|
NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]);
|
|
}
|
|
|
|
@end
|