WordPress iOS API

I would like to know if there is an API for WordPress, built in Objective-C for iOS. This API must support the following:

WordPress *wp = [[WordPress alloc] initWithServer:[NSURL URLWithString:@"http://www.myblog.com"];
[wp authenticate:@"wordpress-user-name" password:@"wordpress-user-password"];
[wp saveDraft:@"wordpress-post-name" content:@"wordpress-post-content" tags:@"wordpress-post-tags"];
[wp postDraft:@"wordpress-post-name"];
[wp logout];
[wp release];

If there is no such API out there, can anyone point me to some references that could help me get started on writing my own?

Thanks for your time

Related posts

Leave a Reply

1 comment