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

SetNormalNavItems() private method

private SetNormalNavItems ( bool animated ) : void
animated bool
return void
		void SetNormalNavItems (bool animated)
		{
			if (ios7) {
				var tint = Praeclarum.Graphics.ColorEx.GetUIColor (DocumentAppDelegate.Shared.App.TintColor);

				actionBtn.TintColor = tint;
				addBtn.TintColor = tint;
				EditButtonItem.TintColor = tint;
			}

			NavigationItem.LeftItemsSupplementBackButton = true;
			NavigationItem.SetLeftBarButtonItems (new UIBarButtonItem[] {
				thereforeBtn,
				actionBtn,
			}, animated);
			NavigationItem.SetRightBarButtonItems (new UIBarButtonItem[] {
				addBtn,
				EditButtonItem,
			}, animated);
		}