Xcode 7.3在编译ZXingObjC代码以生成QRCode时出错



我在五月的应用程序中使用ZXingObjC库创建和读取QRCode,运行良好。

最近,我将Xcode更新为7.3(7D175),并创建了一个新项目,并导入了用于生成QRCode的相同文件。但现在我无法编译这个项目,并且出现了很多错误。

以下描述了一些错误:

1.ZXingObjC/core/ZXResultPoint.h:21:37: No type or protocol named 'NSCopying'
2.ZXingObjC/core/ZXResultPoint.h:21:28: Cannot find interface declaration for 'NSObject', superclass of 'ZXResultPoint'
3. Expected a type -> + (void)orderBestPatterns:(NSMutableArray *)patterns;
4.  ZXingObjC/common/ZXBitArray.h:28:41: Unknown type name 'int32_t' for @property (nonatomic, assign, readonly) int32_t *bits;
5. ZXingObjC/common/ZXBitMatrix.h:31:26: Cannot find interface declaration for 'NSObject', superclass of 'ZXBitMatrix' @interface ZXBitMatrix : NSObject <NSCopying>

有人能帮我解决这些错误吗?知道吗???

谢谢,

AKC

当我使用Xcode 7.3创建了一个新项目,然后导入ZXingObjC库时,我也遇到了类似的问题。我刚刚导入了FoundationFramework类,然后所有的错误都被清除了。

#import <Foundation/Foundation.h>

因此,只要导入Foundation Framework,它肯定会工作

相关内容

  • 没有找到相关文章

最新更新