This tutorial will quickly get you up and running with the ZBar iPhone SDK.
We will develop a very simple app that presents a button the user can tap to invoke the barcode reader and then displays the results. Interface Builder will be used to create the interface.
The completed project is also available with the distributed SDK under Examples/ReaderSample.
Open Xcode; you must have version 3.2.3 or later.
Create a new project using the “View-based Application” template. Name the project “ReaderSample”. Save it wherever you like.
Open ReaderSampleViewController.xib
Drag a Round Rect Button onto the view and title it “Scan”. Customize the placement and appearance as you like.
Drag an Image View onto the view. Size it to fill about half of the remaining space. Change the view mode to Aspect Fit.
Drag a Text View onto the view and size it to fill the remaining space. Change the default text to “No barcode scanned” or something. De-select “Editable”
Add connections to the interface elements in the code; open ReaderSampleViewController.h and change the interface to:
@interface ReaderSampleViewController : UIViewController
{
UIImageView *resultImage;
UITextView *resultText;
}
@property (nonatomic, retain) IBOutlet UIImageView *resultImage;
@property (nonatomic, retain) IBOutlet UITextView *resultText;
- (IBAction) scanButtonTapped;
@end
Now we can finish the interface connections - open ReaderSampleViewController.xib and make these connections:
Consult the Xcode documentation if you need help making these connections. Make sure you save the XIB once they are finished.
Finish the implementation in ReaderSampleViewController.m:
@synthesize resultImage, resultText;
- (IBAction) scanButtonTapped
{
NSLog(@"TBD: scan barcode here...");
}
- (void) dealloc
{
self.resultImage = nil;
self.resultText = nil;
[super dealloc];
}
- (BOOL) shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation) interfaceOrientation
{
return(YES);
}
This stub for scanButtonTapped is temporary, we’ll fix it in a minute...
Although it doesn’t do much yet, you should now have a working skeleton app that you can build and run.
Now for the exciting part - let’s add a barcode reader!
If you have not done so already, download the latest SDK from http://zbar.sourceforge.net/iphone
Double-click the disk image, ZBarSDK-1.2.dmg in the Finder to open it.
Drag the ZBarSDK folder into your Xcode project. Make sure that the “Copy Items into destination group’s folder” checkbox is checked.
Open the target build settings and find Link Binary With Libraries. Click the + and add each of these (NB hold down command for multiple selection):
Warning
Link order may be important for some versions of Xcode; the libraries referenced above should be listed before libzbar.a in the link order.
Import the SDK header. You will usually want to prefix it, so add it to ReaderSample-prefix.pch:
// ADD: import barcode reader APIs
#import "ZBarSDK.h"
Declare support for the delegate protocol in ReaderSampleViewController.h:
@interface ReaderSampleViewController : UIViewController
// ADD: delegate protocol
< ZBarReaderDelegate >
{
...
Re-implement scanButtonTapped to present a barcode reader when the user taps the Scan button. In ReaderSampleViewController.m:
- (IBAction) scanButtonTapped
{
// ADD: present a barcode reader that scans from the camera feed
ZBarReaderViewController *reader = [ZBarReaderViewController new];
reader.readerDelegate = self;
reader.supportedOrientationsMask = ZBarOrientationMaskAll;
ZBarImageScanner *scanner = reader.scanner;
// TODO: (optional) additional reader configuration here
// EXAMPLE: disable rarely used I2/5 to improve performance
[scanner setSymbology: ZBAR_I25
config: ZBAR_CFG_ENABLE
to: 0];
// present and release the controller
[self presentModalViewController: reader
animated: YES];
[reader release];
}
Finally, implement the delegate method to do something useful with the results. Still in ReaderSampleViewController.m:
- (void) imagePickerController: (UIImagePickerController*) reader
didFinishPickingMediaWithInfo: (NSDictionary*) info
{
// ADD: get the decode results
id<NSFastEnumeration> results =
[info objectForKey: ZBarReaderControllerResults];
ZBarSymbol *symbol = nil;
for(symbol in results)
// EXAMPLE: just grab the first barcode
break;
// EXAMPLE: do something useful with the barcode data
resultText.text = symbol.data;
// EXAMPLE: do something useful with the barcode image
resultImage.image =
[info objectForKey: UIImagePickerControllerOriginalImage];
// ADD: dismiss the controller (NB dismiss from the *reader*!)
[reader dismissModalViewControllerAnimated: YES];
}
And that’s it!
You can learn more about using the reader APIs to scan barcodes from Scanning From the Camera Feed or Scanning a User-Selected Image. Use the API Reference to find details about a particular interface.
We take great care to ensure this tutorial is working as described. However, if you do have a problem