I am getting a really weird error related to missing vtable for a given class constructor and destructor. Please help me to resolve this.
Undefined symbols for archi
Try to add virtual destructor to your class. CCNode propably contains some virtual methods and your compiler failed cope with it.
class MissionController: public CCNode
{
public:
MissionController();
virtual ~MissionController();
};
Is it some public framework, where can we see CCNode class definition? See vtable for .. referenced from compile error xcode or maybe http://www.parashift.com/c++-faq-lite/link-errs-missing-vtable.html for more help.