void ScanButtonPressed(object sender, EventArgs e)
 {
     UIApplication.SharedApplication.SetStatusBarHidden(true, UIStatusBarAnimation.Slide);
     singleScanPicker = new SingleScanPickerController();
     singleScanPicker.PrepareToScan();
     PresentViewController(singleScanPicker, true, null);
 }
 public AlertViewDelegate(SingleScanPickerController owner)
 {
     ownerVC  = owner;
     IsOnView = false;
 }
		void ScanButtonPressed (object sender, EventArgs e)
		{
			UIApplication.SharedApplication.SetStatusBarHidden (true, UIStatusBarAnimation.Slide);
			singleScanPicker = new SingleScanPickerController ();
			singleScanPicker.PrepareToScan ();
			PresentViewController (singleScanPicker, true, null);
		}
		public AlertViewDelegate (SingleScanPickerController owner)
		{
			ownerVC = owner;
			IsOnView = false;
		}