mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 13:34:08 -08:00
439ff92bd9
Note, the audio no longer plays. I'm pretty sure this is because the widget is dismissed immediately and the sound is released before it is played. I'm thinkng audio feedback should be done by the caller. git-svn-id: https://zxing.googlecode.com/svn/trunk@1546 59b500cc-1b3d-0410-9834-0bbf25fbcc57
21 lines
505 B
Objective-C
21 lines
505 B
Objective-C
//
|
|
// 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;
|
|
NSString *resultsToDisplay;
|
|
}
|
|
@property (nonatomic, retain) IBOutlet UITextView *resultsView;
|
|
@property (nonatomic, copy) NSString *resultsToDisplay;
|
|
|
|
- (IBAction)scanPressed:(id)sender;
|
|
@end
|