iphone: error while integrating Zxing
I get the following error while integrating ZXing in the iphone app.
For Line:
#import <zxing/common/Counted.h>
I get error:
error: zx开发者_高级运维ing/common/Counted.h: No such file or directory
what could be wrong?
How can it be solved?
Xcode cannot find the file. Where did you save the zxing folder?
You may change it to #import "zxing/common/Counted.h"
And add the path to the Header Search Path in your Build settings.
EDIT: Counted.h does not exist in the objc src folder. It only exists in the symbian and in the cpp folder. You do not use the correct sources.
#import "ZXingWidgetController.h"
#import "QRCodeReader.h"
should be used instead-although they give me file no found too...
精彩评论