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
it would appear that __objc_classlist is the section that contains references to the objective-C class information. There are also many sections that hold information about swift metadata, but I am still learning how to pull them apart.
It appears that swift name mangling follows different rules that are currently supported. Some examples:
$ echo '_$sypSgWOb' | xcrun swift-demangle
outlined init with take of Any?
$ echo '_$sSo10CFErrorRefaMa' | xcrun swift-demangle
type metadata accessor for __C.CFErrorRef
The text was updated successfully, but these errors were encountered:
I tried this on a swift iOS app and it didn't work
First issue is that the
__objc_classname
and__objc_methtype
sections don't exist in the sections:it would appear that
__objc_classlist
is the section that contains references to the objective-C class information. There are also many sections that hold information about swift metadata, but I am still learning how to pull them apart.It appears that swift name mangling follows different rules that are currently supported. Some examples:
The text was updated successfully, but these errors were encountered: