zxing 库的编译错误
Posted
技术标签:
【中文标题】zxing 库的编译错误【英文标题】:Compile error for zxing library 【发布时间】:2014-08-22 11:29:19 【问题描述】:ZXPDF417Codeword *codeword = [self.detectionResultColumnsInternal[barcodeColumn] codewords][codewordsRow];
/My Projects/in Loyal SVN/new source Inloyal/ProjectCode_Inloyal_21-May/ZBarSDK/ZXingObjC/pdf417/decoder/ZXPDF417DetectionResult.m:144:38: 预期的读取数组元素的方法在“NSString *”类型的对象上找不到'
【问题讨论】:
【参考方案1】:替换为:
ZXPDF417Codeword *codeword = ((NSArray *)[self.detectionResultColumnsInternal[barcodeColumn] codewords])[codewordsRow];
我认为应该可以。
【讨论】:
以上是关于zxing 库的编译错误的主要内容,如果未能解决你的问题,请参考以下文章