Xcode添加C语言代码出错

  项目中需要用C语言实现一部分功能,新建C语言文件报错,错误如下:

  检查C语言代码,并没有什么写的不对的地方。查看错误信息列表,发现和自己代码相关的错误在.pch文件中。新建pch文件的时候,默认的是为整个项目代码引入UIkit、Foundation、CoreData框架,但是C语言文件中引入这些文件就会出错。所以这个时候,我们把C语言文件隔离出来。

  旧代码:

#ifndef iRun_Prefix_pch
#define iRun_Prefix_pch

// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import "Masonry.h"

#endif /* iRun_Prefix_pch */

  新代码:

#ifdef __OBJC__
#define iRun_Prefix_pch

// Include any system framework and library headers here that should be included in all compilation units.
// You will also need to set the Prefix Header build setting of one or more of your targets to reference this file.

#import <UIKit/UIKit.h>
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import "Masonry.h"

#endif /* iRun_Prefix_pch */

  以上。

转载于:https://www.cnblogs.com/zpz501/p/5227980.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值