AUv3Host.ViewController.RemoveChildController C# (CSharp) Method

RemoveChildController() private method

private RemoveChildController ( ) : bool
return bool
		bool RemoveChildController ()
		{
			if (childViewController == null || AudioUnitView == null)
				return false;

			childViewController.WillMoveToParentViewController (null);
			AudioUnitView.RemoveFromSuperview ();
			childViewController.RemoveFromParentViewController ();
			childViewController = null;

			return true;
		}
	}