Hi, I downloaded OpenFeint version 2.3.1, unzipped and placed the OpenFeint folder inside right underneath my project in Xcode, and checked "recursively create groups if needed" (the instructions said to use groups and not a folder reference). I renamed my AppViewController and AppDelegate .m files to .mm. I followed the rest of the instructions and compiled and ran, the app works fine. Inside AppViewController.mm I do:
#import "OpeinFeint.h"
and compile, which gives me the errors:
#error: "OpenFeint requires Objective-C++. In Xcode, you can enable this by changing your file's extension to .mm".
#error: syntax error before 'OfNotificationCategory'
#error: syntax error before 'OfNotificationCategory'
and the location of the errors takes me to the OpenFeint files. I did add -ObjC to Other Linker Flags and check Call C++ Default Ctors/Dtors in Objective-C. Any advice? Thanks!