diff --git a/SimpleCollectionView/SimpleCollectionView/SimpleCollectionViewController.cs b/SimpleCollectionView/SimpleCollectionView/SimpleCollectionViewController.cs index 2034346f0..59d6bbb06 100644 --- a/SimpleCollectionView/SimpleCollectionView/SimpleCollectionViewController.cs +++ b/SimpleCollectionView/SimpleCollectionView/SimpleCollectionViewController.cs @@ -109,7 +109,7 @@ public override void PerformAction (UICollectionView collectionView, MonoTouch.O public override bool CanPerform (Selector action, NSObject withSender) { - if (action == new Selector ("custom:")) + if (action == new Selector ("custom")) return true; else return false; @@ -117,7 +117,7 @@ public override bool CanPerform (Selector action, NSObject withSender) // System provided cut, copy and paste will be sent to PerformAction method above, but any custom menu items // must have their assocatied actions implementated explicitly - [Export("custom:")] + [Export("custom")] void Custom() { Console.WriteLine ("custom");