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
Regarding `_NSAttributedStringFromMarkdownCreator` not being found in Foundation, it looks like Apple is hiding some stuff even in public frameworks. The closest thing I could find in the framework bundled with the SDK is `__NSAttributedStringFromMarkdownWithCreator` in `Foundation.tbd`. That means that we cannot rely on `@import Foundation;` including everything that is actually present in the framework, since its TBD is missing symbols.
LOL, this was just a silly edge case where I filter out Foundation stuff because I always import @import Foundation and then I was dumping the headers for... Foundation 🤦
There might be more things to fix to handle this edge case as well as CoreFoundation and NOW libObjc etc?
Maybe my check should also prevent the auto prepending of @import Foundation? but I think that might break other things? Not sure anyone would really want to dump the headers for a Public framework like Foundation in practice?
Originally posted by @t0rr3sp3dr0 in #443 (comment)
The text was updated successfully, but these errors were encountered: