" I am having problems integrating Appirater into my application. I correctly adde...">

Error in import statement "expected" FILENAME "or <FILENAME>"

I am having problems integrating Appirater into my application. I correctly added all the necessary files and have the correct code (I think), but I get an error when I try to implement it in the AppDelegate.m file. When I do #import "Appirater.h", I get an error message:

Expected value is "FILENAME" or <FILENAME>

+3
source share
1 answer

Apparently, the wrong quotation marks were used to wrap the file name, possibly curly quotes "Appirater.h". Recycling them as “direct” quotes "Appirater.h"fixed the error.

+15
source

All Articles