2011-10-26 77 views
1

我發送請求到服務器在我的應用程序和服務器返回響應 例子:ASIhttprequest轉換響應的NSString

ASIhttprequest *request;.......-> sending request....... 

Reciving請求.........-> 的NSLog( @「%@」,[請求響應]);

的請求返回這樣的:

<html xmlns="http://www.w3.org/1999/xhtml"> 

<div> 

</div> 
</form> 

任何想法,我能在這裏做轉換此迴應

回答

0

要從ASI獲得NSString,您需要使用responseString屬性,而不僅僅是response。例如:

NSLog(@"%@", [request responseString]);