TAILIEUCHUNG - Phát triển ứng dụng cho iPhone và iPad - part 34

Tham khảo tài liệu 'phát triển ứng dụng cho iphone và ipad - part 34', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | XML and the iPhone SDK 299 Create a node as a child of the attributed node xmlNewChild attributedNode NULL BAD_CAST AttributedChild BAD_CAST Attributed Node Child Node You can also build nodes and text separately then and add them to the tree later xmlNodePtr attachNode xmlNewNode NULL BAD_CAST AttachedNode xmlNodePtr nodeText xmlNewText BAD_CAST Attached Node Text Add the text to the node xmlAddChild attachNode nodeText Add the node to the root xmlAddChild rootNode attachNode You can even include comments xmlNodePtr comment comment xmlNewComment BAD_CAST This is an XML Comment xmlAddChild rootNode comment Write the doc xmlChar outputBuffer int buffersize You are responsible for freeing the buffer using xmlFree Dump the document to a buffer xmlDocDumpFormatMemory doc outputBuffer bufferSize 1 Create an Nsstring from the buffer NSString xmlString NSString alloc initWithBytes outputBuffer length bufferSize encoding NSUTF8StringEncoding Log the XML string that we created NSLog @ output n @ xmlString Display the text in the textview setText xmlString Free the xml string xmlString release Clean up Free the output buffer xmlFree outputBuffer Release all of the structures in the document including the tree xmlFreeDoc doc xmlCleanupParser 300 I CHAPTER 10 WORKING WITH XML ON THE IPHONE The last thing that you have to do before running the application is add a call to generateXML to viewDidLoad - void viewDidLoad super viewDidLoad self generateXML Now you are ready to build and run the application. You should see the XML generated in the console and displayed in the TextView in the iPhone simulator. Many other features are supported by libxml. I strongly encourage you to visit the libxml web site at http . MOVING FORWARD In this chapter you have learned how to communicate with remote servers over the Internet using the Cocoa URL Loading System. You implemented the NSURLConnection delegate methods to handle asynchronous loading of data from the Web.

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.