ios - Parse Issues in NSObjCRuntime, NSZone, and NSObject ios - Parse Issues in NSObjCRuntime, NSZone, and NSObject ios ios

ios - Parse Issues in NSObjCRuntime, NSZone, and NSObject


I had the same issue on my project when I was trying to mix C code (.h and .c) with Objective-C code. Found the reason of the issue:

Check your .pch file to make sure every Objective-C framework #import (such as #import <UIKit/UIKit.h>) is enclosed in:

#ifdef __OBJC__#endif

If they're outside of this conditional scope, the compiler will try to import Objective-C frameworks into C source code.

Hope that helps.


I just changed the filename of Base64Transcoder.c to Base64Transcoder.m, and now the project compiles. I have no idea why this fixes the problem, but it works.


I had the same issue, using C and C++ code with objective C, and i doesnt have a .pchThe easiest solution was to go into your build settings -> Custom Compiler Flags and set the "Other C Flags" to "-x objective-c" and set the "Other C++ Flags" to "-x objective-c++"

this will do the trick with xCode 7.2