I'm a new iphone developer, question is I want to know the sym.data 's type. Is it codebar or qrcode?

- (void) readerView: (ZBarReaderView*) view
 didReadSymbols: (ZBarSymbolSet*) syms
      fromImage: (UIImage*) img 
{
//do something useful with results and display resultText in resultViewController
for(ZBarSymbol *sym in syms) {
    imageResult3.image = img; 
    **resultText3.text = sym.data;**  
    //return resultText;
                   break;
}
}
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

sym.typeName is what you want...

    resultText.text = sym.typeName;
    resultText.text =  [ resultText.text stringByAppendingString:@" - " ];
    resultText.text =  [ resultText.text stringByAppendingString:sym.data ];

Take a look at the ZBar documentation, at the ZBarSymbol Class Reference.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.