zbar批量二维码扫描

时间:2012-09-28 13:51:22

标签: objective-c ios xcode4.5 zbar-sdk

我目前正在使用ZBar使用website

中记录的步骤扫描QR码

我的问题是,有没有办法修改这些步骤来进行批量扫描(即扫描几个QR码,将它们存储在NSMutableArray中而不关闭扫描仪)?

谢谢!

1 个答案:

答案 0 :(得分:1)

在您解除视图控制器之前,视图控制器不会被忽略。在你拨打电话之前,它实际上并没有消失:

[scanner dismissModalViewControllerAnimated:YES]; 

您会考虑哪些具体项目?我很擅长编写代码并且让它成为完全错误的完整错误代码。

至于NSMutable数组的东西,绝对。那应该没问题。要添加完成按钮,请实现以下代码:

UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] init]; 
[doneButton setTarget:self]; 
doneButton.title = @"Done"; 
[doneButton setAction:@selector(dismissViewController)]; //put the dismissal procedure method where dismiss view controller is
self.navigationItem.rightBarButtonItem = doneButton; 

如果你愿意,xCode现在也有一个内置的完成按钮功能:P