Praeclarum.UI.DocumentsViewController.SetSelecting C# (CSharp) Method

SetSelecting() private method

private SetSelecting ( bool selecting, bool animated ) : void
selecting bool
animated bool
return void
		void SetSelecting (bool selecting, bool animated)
		{
			if (this.selecting == selecting)
				return;

			this.selecting = selecting;

			if (selecting) {

				SetSpecialNav (animated);

				SetTitle ();

				SetSelectingNavItems (animated);

			} else {

				SetNormalNav (animated);

				SetTitle ();

				SetNormalNavItems (animated);
			}

			docsView.SetSelecting (selecting, animated);

			if (ios7) {
				SetNeedsStatusBarAppearanceUpdate ();
				if (NavigationController != null) {
					NavigationController.SetNeedsStatusBarAppearanceUpdate ();
				}
			}
		}