2010-12-18 32 views
0

從NSURLConnection * theConnection對象獲取url的方法是什麼?幫我關於如何創建url字符串

我的意思是我要檢查類似下面

//確實收到響應 - (無效)連接:(NSURLConnection的*)連接didReceiveResponse :(NSURLResponse *)響應 // ----- -------------------------------------------------- ------------------------------------------- {if(connection == @ 「http://google.com」) {}其他 {}

}

是否有可能......請幫我解決

回答

1

老兄url沒有存儲在連接中,它存儲在NSURLResponse對象中。

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