1

我正在使用 Phonegap 的 ExternalFileUtil-Plugin ( https://github.com/phonegap/phonegap-plugins/tree/master/iOS/ExternalFileUtil )。但它只适用于 iPhone。它适用于带有 iOS 6.0 和 6.1 的 iPhone 模拟器,适用于带有 iOS 6.x 的 iPhone 4 和 5。但它不适用于 iPad、模拟器、设备和带有 iOS 5.1 的 iPod Touch 上也不起作用;(

我已经尝试了http://www.tricedesigns.com/2012/08/15/open-with-in-ios-phonegap-apps/评论中描述的任何建议,但没有任何帮助。

在我看来,必须调整以下几行:

UIDocumentInteractionController *controller = [UIDocumentInteractionController  interactionControllerWithURL:fileURL];
controller.delegate = self;
controller.UTI = uti;
[controller retain];

CDVViewController* cont = (CDVViewController*)[ super viewController ];
CGRect rect = CGRectMake(0, 0, cont.view.bounds.size.width, cont.view.bounds.size.height);
[controller presentOptionsMenuFromRect:rect inView:cont.view animated:YES];

有人有什么建议吗?

4

1 回答 1

0

我目前对此问题的解决方案:替换

CGRect rect = CGRectMake(0, 0, cont.view.bounds.size.width, cont.view.bounds.size.height);

有了这个

CGRect rect = CGRectMake(0, 0, 1500.0f, 50.0f);

它就像一个魅力。感谢 Mahendra Liya(请参阅tricedesigns.com上的评论)。

于 2013-07-23T07:50:25.293 回答