我是编程新手,所以我确定这个问题非常基础(请耐心等待!)我刚刚将zxing安装到当前的xcode 4.5项目中。我花了一些时间才能解决这些错误,但最终我明白了。我创建了一个名为“scan”的按钮,希望在其中调用zxing。我怎样才能做到这一点?我尝试查看我实现到源文件中的文件,但无法确定要使用的类和方法。是的,我尝试使用Google搜索这个极其基本的概念,但没有发现任何问题:( 最佳答案 这是您需要在扫描按钮操作中添加的代码。- (IBAction)scanPressed:(id)sender { ZXingWidgetController *widController = [[ZXingWidgetController alloc] initWithDelegate:self showCancel:YES OneDMode:NO]; NSMutableSet *readers = [[NSMutableSet alloc ] init]; <#if ZXQR> QRCodeReader* qrcodeReader = [[QRCodeReader alloc] init]; [readers addObject:qrcodeReader]; <#endif> <#if ZXAZ> AztecReader *aztecReader = [[AztecReader alloc] init]; [readers addObject:aztecReader]; <#endif> widController.readers = readers; [self presentModalViewController:widController animated:YES];}请先删除“”符号,然后再在您的应用中使用此代码。 10-01 01:44