2010-07-06 100 views
-1

我試圖從XML文件檢索數據到IPhone應用程序。XML解析使用目標c

我使用哪個XML文件是:

<note> 
    <heading>Reminder</heading> 
    <body>Don't forget me this weekend!</body> 
    <URL>http://192.168.1.75/one.png</URL> 
</note> 

在這個XML我有檢索文字,但我無法從XML文件的鏈接顯示的圖像。

請幫我解決這個問題!

+0

請向我們展示代碼並告訴我們您嘗試了什麼。什麼是錯誤信息? – Eimantas 2010-07-06 12:53:29

回答

0

所以你期待加載到圖像的URL?

這應該可以做到。 (未經測試的代碼btw。)

NSURL *url; 
NSData *data; 
UIImage *image; 

url = [NSURL URLWithString:xmlURL]; 
data = [[[NSData alloc] initWithContentsOfURL:url] autorelease]; 
image = [UIImage imageWithData:data]; 

// do something with the image