I'm trying to understand how to get my iPhone application working with RegexKitLite, I tried searching Google for how to install it but couldn't find anything that explains it clearly. Hopefully this will become a step-by-step guide for anyone searching for it in the future.
Alright so according to the documentation it says:
The two files, RegexKitLite.h and RegexKitLite.m, and linking against the /usr/lib/libicucore.dylib ICU shared library is all that is required.
So I downloaded the .h and .m files, now I am confused about the whole "linking against..." part. Could someone please clarify?
There's a link in the documentation to the ICU from apple's website which contains a make file among others. Do I run this make file? Do I have to be an administrator when I run it? What do I do once/if the files are "made"? How do I "link against" this? Is this done in XCode? Does it need to be done for every project that needs it? Once I've done all that, I assume all I need to do is #import the .h file and start using it, is this correct?
Thanks