I need to get a short URL from a long one (that I made inside my app). I think that I already read about this, but I couldn't find it anymore here in SO.

Anyone has a piece of code or directions to point this out?

Best Regards

link|improve this question
This question is very similar to yours, and may provide some pointers: stackoverflow.com/questions/2252470/… – Brad Larson Mar 29 '10 at 12:54
feedback

1 Answer

I usually use this one, from brandontreb of iCodeBlog

NSString *apiEndpoint = [NSString stringWithFormat:@"*API URL=*%@",link];
NSString *shortURL = [NSString stringWithContentsOfURL:[NSURL URLWithString:apiEndpoint]
encoding:NSASCIIStringEncoding
error:nil];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.