Exemplo n.º 1
0
 public bool ShouldDisplayDefaultItemDetailLayerForItem(SlyceItemDescriptor descriptor)
 {
     System.Console.WriteLine("SHOULD DISPLAY ITEM DETAIL");
     // Present your custom item detail here or change return value to true
     return(false);
 }
Exemplo n.º 2
0
            //[Export("slyceViewController:shouldDisplayDefaultDetailForItemDescriptor:")]
            public override bool SlyceViewController(SlyceViewController viewController, SlyceItemDescriptor itemDescriptor)
            {
                // Launch your Item detail view controller here after retrieving the desired data from the item descriptors.

                System.Diagnostics.Debug.WriteLine("Should display detial for item " + itemDescriptor.ToString());

                return(true);
            }