I managed to get that done. In case someone likes to know:
QCAR only works with full camera access. Therefore, it has to be initialized and started as shown in its documentation. Luckily, it provides access to the processed camera image as raw RGB data. I used this code to convert the raw data into an UIImage:
QCAR::setFrameFormat(QCAR::GRAYSCALE, true);
const QCAR::Image *image = state.getFrame().getImage(1); // 0: YUV, 1: Grayscale image
const char *data = (const char *)image->getPixels();
int width = image->getWidth(); int height = image->getHeight();
CGColorSpace *colorSpace = CGColorSpaceCreateDeviceGray();
CGBitmapInfo bitmapInfo = kCGBitmapByteOrderDefault;
CGDataProvider *provider = CGDataProviderCreateWithData(NULL, data, width*height, NULL);
CGColorRenderingIntent intent = kCGRenderingIntentDefault;
CGImageRef imageRef = CGImageCreate(width, height, 8, 8, width * 1, colorSpace, bitmapInfo, provider, NULL, NO, intent);
myUIImage = [UIImage imageWithCGImage:imageRef];
Now, you can use ZBar's ZBarImageScanner class like this:
ZBarImageScanner *imageScanner = [[ZBarImageScanner alloc] init];
ZBarImage *image = [[ZBarImage alloc] initWithCGImage:myUIImage.CGImage];
int result = [imageScanner scanImage:image];
if (result > 0) {
ZBarSymbolSet *symbols = imageScanner.results;
for(ZBarSymbol *symbol in symbols) {
NSLog(@"%@", symbol.data);
}
}