Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我注意到在 Xcode 中将某些框架添加到项目后,您无需导入任何头文件即可访问其类。为什么这些类在没有导入的情况下“神奇地”可用?
寻找yourProjectName-Prefix.pch文件。在那里你会发现:
yourProjectName-Prefix.pch
#ifdef __OBJC__ #import <UIKit/UIKit.h> #import <Foundation/Foundation.h> #endif
在#ifdef语句中,您可以添加您喜欢的任何文件,这些文件将在整个项目中自动导入。
#ifdef