@import is modules syntax. Use "Language - Modules." in Xcode to set Enable Modules and Link Frameworks Automatically to Yes, which can support @import syntax
#import<> is the header file in the system framework, and "" is the header file in the project.
<> The search starts from the system framework "" starts from the project itself Old versions can be mixed, but the search speed is different I don’t know what the unsigned ones are, I only know these
@import is modules syntax. Use "Language - Modules." in Xcode to set Enable Modules and Link Frameworks Automatically to Yes, which can support @import syntax
#import<> is the header file in the system framework, and "" is the header file in the project.
Are you using a new version of Xcode? Just add something to this
<> The search starts from the system framework
"" starts from the project itself
Old versions can be mixed, but the search speed is different
I don’t know what the unsigned ones are, I only know these