Overview

Appigo Third Party Integration

Appigo Third Party Integration is provided via a set of convenience classes by Appigo, Inc. which allow third party iPhone apps to import data into Appigo iPhone apps via persistent UIPasteboard objects.

Importing Tasks into Appigo Todo:

Importing a basic note into Appigo Notebook:

 //
 // Create a note
 //
 AppigoNote *note = [[AppigoNote alloc] initWithName:@"My Note Title"];
 
 //
 // Set the text of the note
 //
 note.text = @"Hello world.";
 
 //
 // Import the note into Appigo Notebook.
 //
 [AppigoPasteboard openNotebookWithNote:note];
 
 //
 // Release the note for good measure.
 [note release];
Copyright © 2009-2010 Appigo, Inc. All rights reserved.