A simple class for taking ADN posts and reformatting them to fit into Twitter's length restrictions, taking links into account.
Simply call:
+ (NSString *)formatTwitterStringWithString:(NSString *)string andURL:(NSURL *)url;
Passing the two parameters,
- The post text that you're planning on formatting
- The response URL of your ADN post that will be appended to your Tweet if the post is too long.
EX:
NSString *twitterText = [[KSADNTwitterFormatter shared] formatTwitterStringWithString:postText andURL:[NSURL URLWithString:[responseJSON valueForKeyPath:@"data.canonical_url"]]];
NOTE: Depending on your setup with ADN your canonical_url
key may not have the same path.
If you're using CocoaPods, just add this to your podspec.
pod 'KSADNTwitterFormatter', '0.2.0'
Submit any issues you find through Github and I'll do what I can to fix them.