I have an iOS app built since the beginning with an error in it. Since the source was began constructed from the template, its appdelegate.h looks like:
The compiler is complaining about the variables being in the @interface block, so move them out of it, either above the @interface or below @end. You'll actually probably want to change them to externs in the header and actually declare them in the .m file.