gpt4 book ai didi

iphone - 如何在 iOS 应用程序中使用 "open in..."功能?

转载 作者:可可西里 更新时间:2023-11-01 03:28:13 26 4
gpt4 key购买 nike

我不想将我的应用程序添加到“打开方式...”列表中,而是要获取列表本身。并将文件发送到另一个应用程序。

我正在开发内部通信应用程序,因此当用户收到文件附件时,他/她可以使用每台设备上安装的任何应用程序打开文件...

最佳答案

UIDocumentInteractionController *controller = [UIDocumentInteractionController interactionControllerWithURL:[NSURL fileURLWithPath:appFile]];
self.controller.delegate = self;
CGRect navRect = self.view.frame;
[self.controller presentOptionsMenuFromRect:navRect inView:self.view animated:YES];

实现以下UIDocumentInteractionControllerDelegate 方法

#pragma mark - UIDocumentInteractionControllerDelegate

//===================================================================
- (UIViewController *)documentInteractionControllerViewControllerForPreview:(UIDocumentInteractionController *)controller
{
return self;
}

- (UIView *)documentInteractionControllerViewForPreview:(UIDocumentInteractionController *)controller
{
return self.view;
}

- (CGRect)documentInteractionControllerRectForPreview:(UIDocumentInteractionController *)controller
{
return self.view.frame;
}

关于iphone - 如何在 iOS 应用程序中使用 "open in..."功能?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9513783/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com