Questions tagged [tbxml]

TBXML is a light-weight XML document parser written in Objective-C designed for use on Apple iPad, iPhone & iPod Touch devices.

TBXML is a light-weight XML document parser written in Objective-C designed for use on Apple iPad, iPhone & iPod Touch devices. TBXML aims to provide the fastest possible XML parsing whilst utilising the fewest resources. This requirement for absolute efficiency is achieved at the expense of XML validation and modification. It is not possible to modify and generate valid XML from a TBXML object and no validation is performed whatsoever whilst importing and parsing an XML document.

Visit the TBXML website to learn more.

86 questions
0
votes
2 answers

TBXML Linker Error and ARC Error

I'm trying to purse a XML file with TBXML I have done to following steps to use TBXML Click on your project main folder inside of XCode 4.0 Click on the target Open tab called "Build Phases" Open up "Link Binaries With Libraries" Click "+" find…
Farshad Momtaz
  • 424
  • 1
  • 8
  • 22
0
votes
1 answer

Parsing the Root Element of XML with TBXML

Currently I am having an issue using TBXML to parse an XML service. At the moment.... I am doing this: TBXML *configTBXML = [[TBXML alloc] initWithXMLData:[request responseData]]; TBXMLElement *root = configTBXML.rootXMLElement; TBXMLElement…
jsetting32
  • 1,632
  • 2
  • 20
  • 45
0
votes
0 answers

XML Parsing two loops within same XML

I have an XML in this format: .. .. .. .. .. .. ...... .....
Tripti Kumar
  • 1,559
  • 14
  • 28
0
votes
2 answers

TBXML tableview contents don`t update

I have a UITableView that loads content from a xml file inside a webserver. The TableView is inside a tab Bar Controller; I Call [table reloadData] inside the TBXMLSuccessBlock; The problem is that the content of the TableView dont update. I am…
Marckaraujo
  • 7,422
  • 11
  • 59
  • 97
0
votes
1 answer

TBXML parsing doesnt work using objective c

I have an ASMX web service. It returns data in XML format . Data returned is large. Order of 30-40000 records. I am trying to use TBXML. <ArrayOfNAllAddresses xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"…
RookieAppler
  • 1,517
  • 5
  • 22
  • 58
0
votes
2 answers

Copy C pointers to NSMutableDictionary

I have a class that parses through an XML file in iOS. You can get the data of an element in the form of an TBXMLElement*. I want to iterate through the XML and make deep copies of the TBXMLElements and store them in an NSMutableDictionary class…
Josh Elias
  • 3,250
  • 7
  • 42
  • 73
0
votes
1 answer

my tableview isn't being called wont crash at breakpoint

Okay so i have been fiddling with some iOS development, I am fairly new to this. Usually more of a PHP and JavaScript guy. But here is my issue... in my app I am creating that pulls a friendslist from a local xml file (it will be pointing to a php…
NodeDad
  • 1,519
  • 2
  • 19
  • 48
0
votes
1 answer

TBXML parsing, unable to find nextSibling

I've to parse this XML from the web:
Enzoses
  • 115
  • 14
0
votes
2 answers

How to traverse this xml using tbxml

Can someone tell me how can I properly traverse the given xml structure using tbxml? I am using the attached code for TBXML parsing. I am able to get the values for id and name tag. But the method does not detect the values coming in…
iOS_Passion
  • 788
  • 1
  • 7
  • 17
0
votes
1 answer

get value of an element by parse xml in ios

I'm using TBXML to parse xml. But I have a problem. This is my xml file *4 *3 *2 *1 I used the command TBXMLElement *lyric = [TBXML childElementNamed:@"i"…
Cong Tran
  • 1,448
  • 14
  • 30
0
votes
2 answers

Equivalent datatype to TBXML for C#

Is there any similar datatype that I can use to save data in C# in the same way it is saved in TBXML Objective C?
Mahag
  • 25
  • 10
0
votes
1 answer

TBXML parse an only node xml

I have an xml file having only one node Some text here Is possible to use TBXML to parsing it, if possible, please tell me how to implement? Please help me!
Linh Nguyen
  • 925
  • 1
  • 10
  • 23
0
votes
2 answers

Got memory leak while parsing large xml files from url using TBXML with ARC on

I am using TBXML to parse XML files from an url and I have ARC on. But I got memory leak for the following code: - (void)readXmlFromUrl:(NSString*)url { NSURL *aUrl = [NSURL URLWithString:url]; NSData *data = [[NSData alloc]…
Avigit
  • 284
  • 2
  • 3
  • 13
0
votes
1 answer

IOS: how can i refresh UI with async TBXML-call

I'm using TBXML to parse an http-XML file and display the contents in a UILabel & UIImageView . The call to the XML is done with an async request. When i view the logs the last log element in the succesblock is printed immediately. The changes in…
user1194465
  • 87
  • 1
  • 1
  • 7
0
votes
1 answer

TBXML XML Format

I'm already known with TBXML on how to parse it in my Xcode project. But I'm stuck on an XML Structure I don't know well. This is the XML Structure:
BlackJack
  • 11
  • 3