this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

PDFKit and ImageKit stubs for Xcode

+56
+1
src/frameworks/PDFKit/CMakeLists.txt
··· 186 186 system 187 187 objc 188 188 Foundation 189 + AppKit 189 190 )
+7
src/frameworks/PDFKit/src/PDFThumbnailView.m
··· 18 18 */ 19 19 20 20 #import <PDFKit/PDFThumbnailView.h> 21 + #import <Foundation/NSRaise.h> 22 + #import <AppKit/NSColor.h> 21 23 22 24 @implementation PDFThumbnailView 23 25 ··· 29 31 - (void)forwardInvocation:(NSInvocation *)anInvocation 30 32 { 31 33 NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 34 + } 35 + 36 + - (void)setBackgroundColor:(NSColor *)color 37 + { 38 + NSUnimplementedMethod(); 32 39 } 33 40 34 41 @end
+7
src/frameworks/PDFKit/src/PDFView.m
··· 18 18 */ 19 19 20 20 #import <PDFKit/PDFView.h> 21 + #import <Foundation/NSRaise.h> 21 22 22 23 @implementation PDFView 23 24 ··· 29 30 - (void)forwardInvocation:(NSInvocation *)anInvocation 30 31 { 31 32 NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 33 + } 34 + 35 + - (instancetype)initWithCoder:(NSCoder *)coder 36 + { 37 + NSUnimplementedMethod(); 38 + return self; 32 39 } 33 40 34 41 @end
+17
src/frameworks/Quartz/ImageKit/src/IKImageBrowserView.m
··· 18 18 */ 19 19 20 20 #import <ImageKit/IKImageBrowserView.h> 21 + #import <Foundation/NSRaise.h> 21 22 22 23 @implementation IKImageBrowserView 23 24 ··· 29 30 - (void)forwardInvocation:(NSInvocation *)anInvocation 30 31 { 31 32 NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 33 + } 34 + 35 + - (instancetype)initWithCoder:(NSCoder *)coder 36 + { 37 + NSUnimplementedMethod(); 38 + return self; 39 + } 40 + 41 + - (void)setDelegate:(id)delegate 42 + { 43 + NSUnimplementedMethod(); 44 + } 45 + 46 + - (void)setDraggingDestinationDelegate:(id)draggingDestinationDelegate 47 + { 48 + NSUnimplementedMethod(); 32 49 } 33 50 34 51 @end
+12
src/frameworks/Quartz/ImageKit/src/IKImageView.m
··· 18 18 */ 19 19 20 20 #import <ImageKit/IKImageView.h> 21 + #import <Foundation/NSRaise.h> 21 22 22 23 @implementation IKImageView 23 24 ··· 29 30 - (void)forwardInvocation:(NSInvocation *)anInvocation 30 31 { 31 32 NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 33 + } 34 + 35 + - (instancetype)initWithCoder:(NSCoder *)coder 36 + { 37 + NSUnimplementedMethod(); 38 + return self; 39 + } 40 + 41 + - (void)_didInitWithCoder 42 + { 43 + NSUnimplementedMethod(); 32 44 } 33 45 34 46 @end
+12
src/frameworks/Quartz/ImageKit/src/IKScannerDeviceView.m
··· 18 18 */ 19 19 20 20 #import <ImageKit/IKScannerDeviceView.h> 21 + #import <Foundation/NSRaise.h> 21 22 22 23 @implementation IKScannerDeviceView 23 24 ··· 29 30 - (void)forwardInvocation:(NSInvocation *)anInvocation 30 31 { 31 32 NSLog(@"Stub called: %@ in %@", NSStringFromSelector([anInvocation selector]), [self class]); 33 + } 34 + 35 + - (instancetype)initWithCoder:(NSCoder *)coder 36 + { 37 + NSUnimplementedMethod(); 38 + return self; 39 + } 40 + 41 + - (void)commonInit 42 + { 43 + NSUnimplementedMethod(); 32 44 } 33 45 34 46 @end