RFShortURL 提供免费的 URL 重定向服务。把长URL 转换为较短的URL 。
服务提供地址: http://tinyurl.com
用法:
#import "RFShortURL.h"
例子:
self.smallUrl = [[ RFShortURL alloc] init]; [self.smallUrl setDelegate:self]; [self.smallUrl shortURL:@"www.cnn.com"];
然后监听:
-(void)receivedUrl:(NSString *)url { NSLog(@"%@",url); }