Skip to content

Instantly share code, notes, and snippets.

@jverkoey
Created June 23, 2012 08:11
Show Gist options
  • Select an option

  • Save jverkoey/2977512 to your computer and use it in GitHub Desktop.

Select an option

Save jverkoey/2977512 to your computer and use it in GitHub Desktop.
NIInterapp Example 1
[NIInterapp phone]; // Open the Phone app
[NIInterapp phoneWithNumber:@"555-0102"]; // Make a call
NIMailAppInvocation* invocation = [NIMailAppInvocation invocation];
invocation.recipient = @"[email protected]";
invocation.subject = @"Nimbus made me do it!";
[NIInterapp mailWithInvocation:invocation];
// Open Twitter with the composer and a given message.
[NIInterapp twitterWithMessage:@"I'm playing with the Nimbus sample apps! http://nimbuskit.info"];
// Open Facebook at Jeff Verkoeyen's profile.
[NIInterapp facebookProfileWithId:@"122605446"];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment