Пример #1
0
        void PopView()
        {
            if (history.Count < 2)
            {
                return;
            }

            var item = history.Pop();

            breadcrumbView.RemoveItem(item.Identifier);

            var previousItem = history.Peek();

            detailViewController.SetContentView(previousItem.View);

            if (history.Count <= 1)
            {
                detailViewController.HideBreadcrumb();
            }
        }