I am trying to create Appcelerator Module with FastPDFKit. I have tested this module with demo code in XCode and it's working. So, I started implementing module for it.
I have done all steps as shown required in document to integrate the SDK:
- Created Titanium Module. And opened XCode Project created for this module.
- Copied
FastPdfKit.embeddedframework
into theOthe sources
directory. - Put code from
FastPdfKit.embeddedframework\Resources\Snippets.txt
into particular.h
and.m
files. - Set configurations and select
FastPdfKitFramework
from theinfo
tab of the project.
But when I try to build the module I get an error on #import "ReaderViewController.h"
showing ReaderViewController.h file not found.
I don't know why this error occured only with module development and why it not occured within XCode source of the demo project. Is there any other settings? Please let me know if anything can help me of this anyhow or just give me suggestions about how to integrate custom libraries for Appcelerator modules
.