Abjal
Abjal

Reputation:

NSXMLDocument class in iPhone Device 2.2

i developed one iPhone application, i have used the class "NSXMLDocument" it is working fine in simulator 2.2. but when i select Device 2.2 it is not woking.. i got the error message that

" error: 'NSXMLDocument' undeclared (first use in this function)",,

any idea to solve this ..

by Abjal

Upvotes: 1

Views: 2160

Answers (1)

James
James

Reputation: 5820

NSXMLDocument doesn't exist on the actual device as its too resource intensive - you'll have to use NSXMLParser instead, look here for how to implement it.

Upvotes: 4

Related Questions