You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can't view either of these classes in the runtime browser. I debugged it and in the case of NSScrollView, it was because one of the methods uses a block implementation (imp_implementationWithBlock). This causes -[RTBMethod dyldInfo] to return nil because it can't get the linker address of a block.
This made the three props that rely on that method return nil (categoryName, symbolName, filePath). Not having those leads to several issues so I just made them return @"(null)" to work around it.
The text was updated successfully, but these errors were encountered:
You can't view either of these classes in the runtime browser. I debugged it and in the case of NSScrollView, it was because one of the methods uses a block implementation (
imp_implementationWithBlock
). This causes-[RTBMethod dyldInfo]
to return nil because it can't get the linker address of a block.This made the three props that rely on that method return nil (categoryName, symbolName, filePath). Not having those leads to several issues so I just made them return
@"(null)"
to work around it.The text was updated successfully, but these errors were encountered: