Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 387 Bytes

README.md

File metadata and controls

20 lines (17 loc) · 387 Bytes

MarzSGMLParser

iOS SGML Parser. Useful for OFX API.

######Example Data

<OFX>
  <INVACCTFROM>
    <BROKERID>Fidelity Investments
    <ACCTID>FidRoth
  </INVACCTFROM>
</OFX>

######Example Usage

SGMLParser *parser = [[SGMLParser alloc] init];
NSDictionary *dictionary = [parser parseXMLString:result];
NSLog(@"%@", [[dict valueForKeyPath:@"OFX.INVACCTFROM.BROKERID"]);