// // RootViewController.h // ScanTest // // Created by David Kavanagh on 5/10/10. // Copyright __MyCompanyName__ 2010. All rights reserved. // #import #import "ZXingWidgetController.h" @interface RootViewController : UIViewController { IBOutlet UITextView *resultsView; NSString *resultsToDisplay; } @property (nonatomic, retain) IBOutlet UITextView *resultsView; @property (nonatomic, copy) NSString *resultsToDisplay; - (IBAction)scanPressed:(id)sender; @end