Skip to content

Commit

Permalink
Ignore PhotoFoundation classes in the runtime lookup (#31)
Browse files Browse the repository at this point in the history
We were getting the following warning:

```
*** NSForwarding: warning: object 0x1208aa3f0 of class 'PFEmbeddedMulticasterImplementation' does not implement doesNotRecognizeSelector: -- abort
```

Closes #30
  • Loading branch information
jverkoey authored Jul 24, 2018
1 parent c4ab199 commit 2e8866d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/private/CBCRuntime.m
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ static BOOL CBCCatalogIsDebugLeaf(Class aClass) {
NSSet *ignoredClasses = [NSSet setWithArray:@[
@"SwiftObject", @"Object", @"FigIrisAutoTrimmerMotionSampleExport", @"NSLeafProxy"
]];
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS", @"WK" ];
NSArray *ignoredPrefixes = @[ @"Swift.", @"_", @"JS", @"WK", @"PF" ];

for (int ix = 0; ix < numberOfClasses; ++ix) {
Class aClass = classList[ix];
Expand Down

0 comments on commit 2e8866d

Please sign in to comment.