Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any libraries or examples of how to handle OFX on the iPhone?

Tags:

iphone

ofx

I'm working on a money-handling iPhone application and would like to interact with sources using the Open Financial Exchange (OFX) standard. Information about this standard is presented here and here.

Are there any open source libraries, examples, or tutorials out there about how to interact with OFX on an iPhone or in Objective-C?

like image 805
Ranjeet Sajwan Avatar asked Oct 19 '10 09:10

Ranjeet Sajwan


1 Answers

I have no experience myself, but there's a C/C++ project named LibOFX which is open source - maybe it can be tweaked in using GCC Objective-C++?

Or, if you plan on writing your own Objective-C implementation, you can look into the code of OFX4J - a Java open source implementation of the OFX specification.

like image 194
Björn Avatar answered Sep 22 '22 14:09

Björn