2010-05-12 11:24:18 -07:00
|
|
|
//
|
|
|
|
// RootViewController.h
|
|
|
|
// ScanTest
|
|
|
|
//
|
|
|
|
// Created by David Kavanagh on 5/10/10.
|
|
|
|
// Copyright __MyCompanyName__ 2010. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "ZXingWidgetController.h"
|
|
|
|
|
|
|
|
@interface RootViewController : UIViewController <ZXingDelegate> {
|
|
|
|
IBOutlet UITextView *resultsView;
|
2010-05-22 02:17:41 -07:00
|
|
|
NSString *resultsToDisplay;
|
2010-05-12 11:24:18 -07:00
|
|
|
}
|
2010-05-22 02:17:41 -07:00
|
|
|
@property (nonatomic, retain) IBOutlet UITextView *resultsView;
|
|
|
|
@property (nonatomic, retain) NSString *resultsToDisplay;
|
2010-05-12 11:24:18 -07:00
|
|
|
|
|
|
|
- (IBAction)scanPressed:(id)sender;
|
|
|
|
@end
|