I download ZBarSDK 1.2 in http://zbar.sourceforge.net/download.html It works well when I set the sourceType of ZBarReaderViewController as UIImagePickerControllerSourceTypeCamera. But when I set the sourceType as UIImagePickerControllerSourceTypePhotoLibrary or UIImagePickerControllerSourceTypeSavedPhotosAlbum,the app crashed and I got the error as follow:
2012-05-28 17:23:03.476 Wow[4137:10703] * Assertion failure in -[ZBarReaderViewController setSourceType:], /Users/spadix/zbar/hg/sdk/iphone/ZBarReaderViewController.m:650 2012-05-28 17:23:03.626 Wow[4137:10703] * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'attempt to set unsupported value (1) for sourceType property'
I have google this issue but can't find a solution.Can anybody tell me how to solute this issue?Dose version 1.2 only support UIImagePickerControllerSourceTypeCamera?Dose the source witch I download is bad?
Thanks.
Basically present the standard iOS media view controller if you want to choose a saved image. After the user has selected an image from the standard iOS media controller, you instantiate a copy of ZBarImageScanner to scan the image. If this makes sense, skip to step 5 to see how I scan a UIImage using ZBarImageScanner. Otherwise, try and follow along the steps below. Hope this helps.
First show the user an alert with options.
On selection,
if and only if the sourceType == UIImagePickerControllerSourceTypeCamera do you use ZBar to present the image capture interface.
a couple ways we can detect which media picker was used
and the juicy part