Hi,
The following lines in ofxTextInputField.cpp cause build error on Xcode 5 with 0.8.0.
void ofxTextInputField::setClipboard(string clippy) { ...
string ofxTextInputField::getClipboard() { ...
Following might be cause probably.
#ifdef OF_VERSION_MINOR
#if OF_VERSION_MINOR>=8 || OF_VERSION_MAJOR>0
#define USE_GLFW_CLIPBOARD
#endif
#endif
It went well when I moved the lines above into header file.
Thanks!