帮我获取url字符串

时间:2010-12-18 06:50:54

标签: iphone iphone-sdk-3.0

从NSURLConnection * theConnection对象获取url的方法是什么。

我的意思是我想检查如下

  

//确实收到了回复    - (void)连接:( NSURLConnection *)连接didReceiveResponse :( NSURLResponse *)响应   // ------------------------------------------------ -------------------------------------------------- {if(connection == @“http://google.com”)     {}其他   {}

     

}

这可能......请帮助我

1 个答案:

答案 0 :(得分:1)

粗鲁的url没有存储在连接中,它存储在NSURLResponse对象中。

if (response.url isEqual: ...) // you can get what you want here, the return value is a (NSURL *)