iOS
2014.03.18 15:23
XML 파싱을 쉽게 해주는 TBXML
조회 수 693 추천 수 0 댓글 0
첨부 '1' |
---|
XML 파싱할때 직관적으로 코딩할 수 있는 TBXML을 소개합니다.
아래는 예제파일에 포함된 소스코드 일부분입니다. 대략 이런식으로 코딩이 가능합니다. 참고하세요. ^^
// instantiate an array to hold author objects authors = [[NSMutableArray alloc] initWithCapacity:10]; // Load and parse the books.xml file tbxml = [[TBXML tbxmlWithXMLFile:@"books.xml"] retain]; // Obtain root element TBXMLElement * root = tbxml.rootXMLElement; // if root element is valid if (root) { // search for the first author element within the root element's children TBXMLElement * author = [TBXML childElementNamed:@"author" parentElement:root]; // if an author element was found while (author != nil) { // instantiate an author object Author * anAuthor = [[Author alloc] init]; // get the name attribute from the author element anAuthor.name = [TBXML valueOfAttributeNamed:@"name" forElement:author]; // search the author's child elements for a book element TBXMLElement * book = [TBXML childElementNamed:@"book" parentElement:author]; // if a book element was found while (book != nil) { // instantiate a book object Book * aBook = [[Book alloc] init]; // extract the title attribute from the book element aBook.title = [TBXML valueOfAttributeNamed:@"title" forElement:book]; // extract the title attribute from the book element NSString * price = [TBXML valueOfAttributeNamed:@"price" forElement:book]; // if we found a price if (price != nil) { // obtain the price from the book element aBook.price = [NSNumber numberWithFloat:[price floatValue]]; } // find the description child element of the book element TBXMLElement * desc = [TBXML childElementNamed:@"description" parentElement:book]; // if we found a description if (desc != nil) { // obtain the text from the description element aBook.description = [TBXML textForElement:desc]; } // add the book object to the author's books array and release the resource [anAuthor.books addObject:aBook]; [aBook release]; // find the next sibling element named "book" book = [TBXML nextSiblingNamed:@"book" searchFromElement:book]; } // add our author object to the authors array and release the resource [authors addObject:anAuthor]; [anAuthor release]; // find the next sibling element named "author" author = [TBXML nextSiblingNamed:@"author" searchFromElement:author]; } } // release resources [tbxml release];
소스다운로드는 첨부파일 또는 아래링크를 참고하세요.
http://www.tbxml.co.uk/TBXML/TBXML_Free.html
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
191 | iOS |
Pinterest UI 만들기 2 - IIIThumbFlow
![]() |
hooni | 2014.03.18 | 834 |
190 | iOS |
Pinterest 스타일 UI 구현한 또다른 예제 JSPintDemo
![]() |
hooni | 2014.03.18 | 890 |
189 | iOS |
Placeholder값을 텍스트필드의 타이틀로 바꿔주는 커스텀 컨트롤 - JVFloatLabeledTextField
![]() |
hooni | 2014.03.19 | 952 |
188 | iOS |
plist로 테이블뷰 구성하기 - DrillDownApp
![]() |
hooni | 2014.03.18 | 739 |
187 | iOS |
Pull to Refresh + 탁구 = BOZPongRefreshControl
![]() |
hooni | 2014.03.19 | 941 |
186 | iOS |
Pull-To-Refresh 기능을 코드한줄에 구현가능한 SVViewController
![]() |
hooni | 2014.03.18 | 594 |
185 | iOS |
Pulse UI 만들기 - PPImageScrollingTableViewCell
![]() |
hooni | 2014.03.19 | 839 |
184 | iOS |
Pulse 스타일의 앱 만들기
![]() |
hooni | 2014.03.18 | 631 |
183 | iOS |
Sliding Navigation Controller - 트위터앱 처럼 슬라이딩 컨트롤러 구현가능
![]() |
hooni | 2014.03.18 | 622 |
182 | iOS |
SpaceGame - 슈팅게임
![]() |
hooni | 2014.03.18 | 689 |
181 | iOS |
Sprite Bird master 샘플 2가지
![]() |
hooni | 2014.09.11 | 909 |
180 | iOS |
Swift로 개발된 2048 게임 오픈소스 - swift-2048
![]() |
hooni | 2014.07.01 | 1044 |