I\'ve got a C++ class I want to use which has all the code in the header file, rather than the CPP file. I\'m trying to call it from an objective-C file which inherits a UIViewC
I'm not a C++ coder, so this was probably an obvious mistake, but if anyone else comes across a similar problem, I simply changed my code from:
myObject.method();
to
myObject->method();