Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 iPad (iOS) 开发一个 Flex 移动项目,我需要在本机 PDF 阅读器中打开一个 PDF 文档。
我想我需要与原生扩展集成。
有人做过这样的事吗?
感谢您的建议。
你试过这个吗?
var myFileName:String = 'myFile.pdf'; var localFile:File = File.documentsDirectory.resolvePath('myAppFolder/'+myFileName); localFile.openWithDefaultApplication()
也许这可以帮助你!