Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从一个长 URL(我在我的应用程序中创建)中获取一个短 URL。我想我已经读过这个了,但是我在 SO 中再也找不到它了。
任何人都有一段代码或指示来指出这一点?
此致
我通常使用这个,来自 iCodeBlog 的brandontreb
NSString *apiEndpoint = [NSString stringWithFormat:@"*API URL=*%@",link]; NSString *shortURL = [NSString stringWithContentsOfURL:[NSURL URLWithString:apiEndpoint] encoding:NSASCIIStringEncoding error:nil];