The iOS SDK supports social sharing among the major social networks, and I’ve mentioned the excellent multiple network sharing library Sharekit 2 that supports a vast number of social networks and easy extensibility.
Here’s a library that makes it easier to build clients for the App.net social network called ADNKit from Joel Levin.
The ADNKit wrapper provides easy authentication and posting, and can support multiple accounts with a clean high level syntax.
Here’s an example from the readme showing how easy it is to post to App.net:
post.text = @"Hello, world!";
[[ANKClient sharedClient] createPost:post completion:^(ADNPost *post, NSError *error) {
NSLog(@"post created! %@", post ?: error);
}];
You can find ADNKit on Github here which uses the AppDotNet App.netAPI wrapper.
A nice easy to use wrapper if you’re looking to support App.net.
- Open Source: Easy To Use High Performance iOS Audio (Recording And Playback) Library
- Open Source: Library For Easy Usage Of The FourSquare API In iOS Apps
- Open Source: Library For Easy iCloud Image And Document Transfers With A Blocks Based Syntax
- Open Source Tween Library W/Concise UIView Animation Syntax And Ability To Tween Any Numeric Value
- Open Source iOS Objective-C Categories For Fast, Easy, Clean, Threaded Disk I/O
Original article: Open Source iOS Library Providing A Clean High-Level Syntax For Integrating App.net
©2013 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.





