Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
[ios9] CollectionView minor API rename
Browse files Browse the repository at this point in the history
  • Loading branch information
conceptdev committed Sep 11, 2015
1 parent 9f624f1 commit 66fa754
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ios9/CollectionView/CollectionView/SecondViewController.cs
Expand Up @@ -35,7 +35,7 @@ public override void ViewDidLoad ()
CollectionView.BeginInteractiveMovementForItem (selectedIndexPath);
break;
case UIGestureRecognizerState.Changed:
CollectionView.UpdateInteractiveMovementTargetPosition (gesture.LocationInView (View));
CollectionView.UpdateInteractiveMovement (gesture.LocationInView (View));
break;
case UIGestureRecognizerState.Ended:
CollectionView.EndInteractiveMovement ();
Expand Down
2 changes: 1 addition & 1 deletion ios9/CollectionView/CollectionView/ThirdViewController.cs
Expand Up @@ -37,7 +37,7 @@ public override void ViewDidLoad ()
}
break;
case UIGestureRecognizerState.Changed:
CollectionView.UpdateInteractiveMovementTargetPosition (gesture.LocationInView (View));
CollectionView.UpdateInteractiveMovement (gesture.LocationInView (View));
break;
case UIGestureRecognizerState.Ended:
CollectionView.EndInteractiveMovement ();
Expand Down

0 comments on commit 66fa754

Please sign in to comment.