I\'m using RedditKit to integrate Reddit into an app, and in Objective-C I called the API as follows (and it worked fine):
[[RKClient sharedClient] signI
For completeness here's some code that works:
RKClient.sharedClient().frontPageLinksWithPagination(nil, completion: { (collection, pagination, error) in if let links = collection as? RKLink[] { for link in links { println(link.title) } } })