AVCam.CameraViewController.SessionInterruptionEnded C# (CSharp) Method

SessionInterruptionEnded() private method

private SessionInterruptionEnded ( NSNotification notification ) : void
notification NSNotification
return void
		void SessionInterruptionEnded (NSNotification notification)
		{
			Console.WriteLine ("Capture session interruption ended");
			if (!ResumeButton.Hidden) {
				UIView.AnimateNotify (0.25,
					() => ResumeButton.Alpha = 0,
					success => ResumeButton.Hidden = true);
			}
			if (!CameraUnavailableLabel.Hidden) {
				UIView.AnimateNotify (0.25,
					() => CameraUnavailableLabel.Alpha = 0,
					success => CameraUnavailableLabel.Hidden = true);
			}
		}