我正在尝试使用 FastPDFKit 创建 Appcelerator 模块。我已经用 XCode 中的演示代码测试了这个模块并且它正在工作。所以,我开始为它实现模块。
我已完成文档中显示的所有步骤以集成 SDK:
- 创建钛模块。并打开为此模块创建的 XCode 项目。
- 复制
FastPdfKit.embeddedframework
到Othe sources
目录中。 - 将代码
FastPdfKit.embeddedframework\Resources\Snippets.txt
放入特定.h
的.m
文件中。 - 设置配置并
FastPdfKitFramework
从info
项目的选项卡中选择。
但是当我尝试构建模块时出现错误,#import "ReaderViewController.h"
我ReaderViewController.h file not found.
不知道为什么这个错误只发生在模块开发中,以及为什么它没有出现在演示项目的 XCode 源代码中。有没有其他设置?请让我知道是否有任何事情可以帮助我解决这个问题,或者只是给我一些建议how to integrate custom libraries for Appcelerator modules
。