我正在使用 iOS SDK 5 开发应用程序,并且正在尝试使用 ARC。但我需要使用 ASIHTTPRequest
并且它不支持 ARC。 Apple 的文档说使用 ARC 文件是可以的。所以我用 -fno-objc-arc
编译所有 ASIHTTPRequest
文件。我在使用 ARC 的类(class)中编写了以下代码:
NSURL *url = [[NSURL alloc] initWithString:urlStr];
ASIHTTPRequest *req = [[ASIHTTPRequest alloc] initWithURL:url];
req.delegate = self;
[req startAsynchronous];
但是在执行第一行之后,url 为 nil。有什么问题或如何在 ARC 项目中使用手动管理的代码?谢谢。
您是否已转义 URL 字符串中的所有非 ASCII 字符?如果没有,则不会创建 NSURL 实例,因为它不知道如何处理 URL 字符串中的非 ASCII 字符。你需要这样做:
NSURL *url = [NSURL URLWithString:[urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
另外,为什么不使用 Apple 的辅助方法 URLWithString:
而不是创建您自己的 NSURL 实例,它会给您一个“自动发布”的 NSURL 实例,如下所示:
NSURL *url = [NSURL URLWithString:[urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
ASIHTTPRequest *req = [[ASIHTTPRequest alloc] initWithURL:url];
req.delegate = self;
[req startAsynchronous];
关于iphone - 带有 ASIHTTPRequest 的 ARC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7470308/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |