Created
June 23, 2012 08:11
-
-
Save jverkoey/2977512 to your computer and use it in GitHub Desktop.
NIInterapp Example 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [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