分配给“NSHTTPURLResponse *”的指针类型不兼容来自“NSURLResponse *”

发布于 2024-11-29 01:10:18 字数 389 浏览 0 评论 0原文

我在下面的代码中收到警告:不兼容的指针类型从“NSURLResponse *”分配给“NSHTTPURLResponse *”。此方法是 Sharekit 的一部分。

带有警告的行是粗体/斜体的:

    - (void)connection:(NSURLConnection *)aConnection didReceiveResponse:(NSURLResponse *)aResponse
{
    if (response)
        [response release];
    ***response = [aResponse retain];***
    [responseData setLength:0];
}

有人请帮忙!

谢谢!

I get the warning Incompatible pointer types assigning to 'NSHTTPURLResponse *' from 'NSURLResponse *' in the code below. This method is part of Sharekit.

The line with the warning is the bolded/italicized one:

    - (void)connection:(NSURLConnection *)aConnection didReceiveResponse:(NSURLResponse *)aResponse
{
    if (response)
        [response release];
    ***response = [aResponse retain];***
    [responseData setLength:0];
}

Someone please help!

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜心 2024-12-06 01:10:18

对于编译器来说,aResponse[aResponse keep] 的结果是一个 NSURLResponse。不过我猜测 response 是一个 NSHTTPURLResponse。由于 NSURLResponse 是 NSHTTPURLResponse 的超类,因此您不能直接分配 - 但您可以使用强制转换来删除警告:

response = (NSHTTPURLResponse *)[aResponse retain];

To the compiler, aResponse, and the result of [aResponse retain], is an NSURLResponse. However I'm guessing response is an NSHTTPURLResponse. Since NSURLResponse is a superclass of NSHTTPURLResponse, you can't just assign directly — but you can use a cast to remove the warning:

response = (NSHTTPURLResponse *)[aResponse retain];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文