Error from import statement "expected "FILENAME" or <FILENAME>"
compiler-errors, import, objective-c
Solution
Apparently the wrong quote characters, perhaps curly quotes `“Appirater.h”`, had been used to wrap the file name. Retyping them as "straight" quotes `"Appirater.h"` eliminated the error.
Problem
I am having some trouble integrating Appirater into my app. I have properly added all of the necessary files, and have the right code (I think), but I am getting an error when trying to implement it into my AppDelegate.m file. When I do `#import "Appirater.h"` I get the error: Expected "FILENAME" or <FILENAME>