public override void ItemSelected (UICollectionView collectionView, NSIndexPath indexPath)
		{
			// UseLayoutToLayoutNavigationTransitions when item is selected

			circleLayout = new CircleLayout (monkeys.Count) { ItemSize = new CGSize (100, 100) };
			controller2 = new ImagesCollectionViewController (circleLayout);
			controller2.UseLayoutToLayoutNavigationTransitions = true;

			NavigationController.PushViewController (controller2, true);
		}
コード例 #2
0
        public override void ItemSelected(UICollectionView collectionView, NSIndexPath indexPath)
        {
            // UseLayoutToLayoutNavigationTransitions when item is selected

            circleLayout = new CircleLayout(monkeys.Count)
            {
                ItemSize = new CGSize(100, 100)
            };
            controller2 = new ImagesCollectionViewController(circleLayout);
            controller2.UseLayoutToLayoutNavigationTransitions = true;

            NavigationController.PushViewController(controller2, true);
        }