I’m trying to make a copy of the xmlSettings example in openframeworks from the examples > addons directory to do some testing, but it has no .xcodeproj file within it, so I’m not sure how to make a working example within xcode. I’ve used the project generator to generate empty projects, and I’ve copied projects that contain the xcodeproj file, but I’ve never had to deal with this scenario and I haven’t had any luck finding a tutorial online. Thanks for the help.
Share
Even without the xcode project you should be able to use the ofxXmlSettings addon like so:
#include "ofxXmlSettings.h"in testApp.h declare an instance:
ofxXmlSettings xml;and use in
setup()to load/save an xml file:Also if it helps, I’ve posted a zipped version of the sample xcode project here. Note that I’m using an older version of Xcode(3.2.6) on an older os(10.6.8), so not 100% it will work on your configuration.