Skip to content

Instantly share code, notes, and snippets.

@spouliot
Created November 23, 2011 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spouliot/1388772 to your computer and use it in GitHub Desktop.
Save spouliot/1388772 to your computer and use it in GitHub Desktop.
[Test]
// http://stackoverflow.com/questions/8240276/how-to-make-work-uidocumentinteractioncontroller-in-monotouch
public void Delegate ()
{
UIDocumentInteractionController dic = new UIDocumentInteractionController ();
UIDocumentInteractionControllerDelegate del = new UIDocumentInteractionControllerDelegate ();
dic.Delegate = del;
Assert.NotNull (dic.Delegate, "Delegate");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment