The documentation states that "this project is compiled into a static library that you can include, or you can directly reference the source files."
Here is what I did. I downloaded it from GitHub and unzipped it. Here are the classes that I see.

Now which of these files is the “static library” that I have to import into my project?
Also, if I just want to reference the source files, should I just copy the .h / .m files in Classes into my project? I tried to do this, but when I try to create it, I get the following error:
Undefined symbols for architecture i386: "_OBJC_CLASS_$_CALayer", referenced from: objc-class-ref in AQGridViewCell.o ld: symbol(s) not found for architecture i386 collect2: ld returned 1 exit status
Can someone show me how to do this?
source share