Exemplo n.º 1
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);
            }
Exemplo n.º 2
0
        private void doSomethingWithSlyce()
        {
            System.Diagnostics.Debug.WriteLine("Slyce.Shared().DefaultSession = " + Slyce.Shared().DefaultSession.DebugDescription);

            SlyceViewController slvc = new SlyceViewController(Slyce.Shared(), SlyceViewControllerMode.Universal);

            slvc.Delegate = new SlyceVCDelegate();
            Window.RootViewController.PresentViewController(slvc, false, null);
        }
Exemplo n.º 3
0
            //[Export("slyceViewController:shouldDisplayDefaultListForItemDescriptors:")]
            public override bool SlyceViewController(SlyceViewController viewController, SlyceItemDescriptor[] itemDescriptors)
            {
                // Loop through the itemDescriptor to get the needed data
                // Launch your Items list view controller here after retrieving the desired data from the item descriptors.


                System.Diagnostics.Debug.WriteLine("Should display default list");

                return(true);
            }
Exemplo n.º 4
0
 //[Export("slyceViewController:didOpenSession:")]
 public override void SlyceViewController(SlyceViewController viewController, SlyceSession session)
 {
 }