What is the importance of .pch file and what is the significance of"#ifdef OBJC"?
Also, where do we define parameters like "#ifdef IS_PRODUCTION" which are checked in .pch file.
What is the importance of .pch file and what is the significance of"#ifdef OBJC"?
Also, where do we define parameters like "#ifdef IS_PRODUCTION" which are checked in .pch file.
.pch
is a Pre-Compile Header.
In the C and C++ programming languages, a header file is a file whose text may be automatically included in another source file by the C preprocessor, usually specified by the use of compiler directives in the source file.
#ifdef OBJC
lets the compiler know that the code is Objective-C.
#ifdef IS_PRODUCTION
is something you have defined on your own, a directive telling the compiler to do something only if this is defined, most-likely something for a PRODUCTION build.
#ifdef OBJC
lets the compiler know that the code is Objective-C" is quite misleading as it is not "telling" anybody anything, but rather simply checking if ObjC is known/available at compile time and ensuring that its contained code is otherwise omitted during compilation. The effect might be the same in 9 out of 10 cases, yet the technical implications are significantly different. The compiler does not gain any more information via #ifdef OBJC
, rather quite the opposite. It leads to omission of (and potentially critical) code after all. –
Marionmarionette The .pch file allows you to avoid importing common files like UIKit.h and Foundation.h. If you have those files imported in the .pch, your own classes don't need to import them.
The significance of #ifdef OBJC is so that you don't import headers containing objective-c code if you don't have the compiler set to build objective c code (hence avoiding lots of compiler errors).
You define parameters such as IS_PRODUCTION inside the target's build settings. I do it usually in "other C flags".
.pch
is a Pre-Compile Header.
In the C and C++ programming languages, a header file is a file whose text may be automatically included in another source file by the C preprocessor, usually specified by the use of compiler directives in the source file.
#ifdef OBJC
lets the compiler know that the code is Objective-C.
#ifdef IS_PRODUCTION
is something you have defined on your own, a directive telling the compiler to do something only if this is defined, most-likely something for a PRODUCTION build.
#ifdef OBJC
lets the compiler know that the code is Objective-C" is quite misleading as it is not "telling" anybody anything, but rather simply checking if ObjC is known/available at compile time and ensuring that its contained code is otherwise omitted during compilation. The effect might be the same in 9 out of 10 cases, yet the technical implications are significantly different. The compiler does not gain any more information via #ifdef OBJC
, rather quite the opposite. It leads to omission of (and potentially critical) code after all. –
Marionmarionette © 2022 - 2024 — McMap. All rights reserved.