You have found PodioPlatformKit, the official Objective-C and Swift SDK for Podio Platform. It works with both iOS and Mac OS X.

Build Status

For help post on Stack Overflow and tag with podio. For bugs create an issue on GitHub.

Working with Comments

Add a comment

Podio supports commenting on many things including items, tasks, status posts etc. To add a new comment, use the methods provided by the PKTComment class:

PKTComment.addCommentWithText("My insightful comment", referenceID: 1234)
  .onSuccess { (comment: PKTComment!) in
    println("Comment posted with ID: \(comment.commentID)");
  }