Ejemplo n.º 1
0
 public void GoTo(ExistingImageViewController controller, Image image)
 {
     // Gets called when the user taps on an image in the collection view
     // Dismisses collection view and pulls up a SubmitPostViewController
     controller.DismissViewController(true, () => {
         PerformSegue("newPost", image);
     });
 }
Ejemplo n.º 2
0
 public CollectionViewDelegate(ExistingImageViewController controller)
 {
     this.controller = controller;
 }
		public void GoTo(ExistingImageViewController controller, Image image)
		{
			// Gets called when the user taps on an image in the collection view
			// Dismisses collection view and pulls up a SubmitPostViewController
			controller.DismissViewController (true, () => {
				PerformSegue("newPost", image);
			});
		}
			public CollectionViewDelegate(ExistingImageViewController controller)
			{
				this.controller = controller;
			}