iOS开发-url包括中文报错解决的方法

常常, 我们用通过这个方案调用API。

    NSString* urlString = [NSString stringWithFormat:@"http://api.douban.com/v2/movie/search?q=%@", content];
    
    NSURL *url = [NSURL URLWithString:urlString];
    testRequest = [ASIHTTPRequest requestWithURL:url];
    [testRequest setDelegate:self];
    [testRequest startAsynchronous];
上一篇:NSURLSession中的downloadTask的使用


下一篇:IOS 开发 寻找图片的一些方法和用法