If I create a new UIViewController with xib and then include testApp.h with a testApp *myApp variable, it won’t compile. It says “specifier-qualifier-list before testApp”.
#import <UIKit/UIKit.h>
#include "testApp.h"
@interface AudioViewController : UIViewController {
testApp *myApp;
}
This doesn’t compile. Any ideas?