8

我是编程新手,所以我敢肯定这个问题非常基本(请耐心等待!)

我刚刚将 zxing 安装到我当前的 xcode 4.5 项目中。我花了一段时间来解决这些错误,但我终于明白了。

我创建了一个名为“scan”的按钮,我希望在其中调用 zxing。我怎样才能做到这一点?

我尝试查看我在源文件中实现的文件,但无法确定要使用哪些类和方法。

是的,我尝试用谷歌搜索这个非常基本的概念,但什么也没找到:(

4

1 回答 1

3

这是您需要在扫描按钮操作中添加的代码。

- (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];

}

在您的应用中使用此代码之前,请删除“<>”符号。

于 2012-12-20T03:48:30.727 回答