gpt4 book ai didi

ios - 如何为纯文本实现在应用程序中打开

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:18:21 32 4
gpt4 key购买 nike

我想为用户提供点击“操作”按钮并弹出通常的共享表的功能,其中应该包括消息、Facebook 等图标右侧的其他应用程序——可以使用 .txt 文件的应用程序,或者只是一个 NSString

我目前正在通过 UIActivityViewController 显示共享表,它运行良好,但它不包括列表中的其他应用程序。通过阅读其他 SO 问题,我得出结论,只有当您改用 UIDocumentInteractionController 时,才有可能让其他应用程序出现。我研究了在临时目录中创建一个 .txt 文件以共享该文件(而不是仅仅共享一个 NSString),但是当我点击共享按钮时只显示邮件(没有副本)。 [请注意,如果我在真实设备上运行它,而不是模拟器,除了 Mail 之外,还会出现更多应用程序和 AirDrop。] 当我点击 Mail 时,应用程序崩溃:无法获取 URL 的数据:操作无法完成. (Cocoa 错误 260。)我创建/检索 .txt 文件的方式有问题。

我的问题是:

  • 为什么我的代码在尝试共享 .txt 文件时会导致崩溃?
  • 如何让“复制”选项与包含其他应用的共享表出现在同一个共享表中?

总而言之:我需要一个共享表,其中包括:Copy、AirDrop、Messages、Mail、Facebook、Twitter、Pages、Dropbox 等,用于简单的文本字符串。谢谢!

以下代码行位于我的 IBAction 共享按钮点击功能中:
UIActivityViewController 方法:

UIActivityViewController *activityView = [[UIActivityViewController alloc] initWithActivityItems:@[self.myUITextField.text] applicationActivities:nil];
[self presentViewController:activityView animated:YES completion:nil];

结果:
enter image description here

UIDocumentInteractionController 方法:

NSString *fileName = [NSString stringWithFormat:@"%@mytextfile.txt", NSTemporaryDirectory()];
[self.myUITextField.text writeToFile:fileName
atomically:NO
encoding:NSStringEncodingConversionAllowLossy
error:nil];
NSURL *textFileURL = [NSURL fileURLWithPath:[NSTemporaryDirectory() stringByAppendingPathComponent:@"mytextfile.txt"]];

UIDocumentInteractionController *documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:textFileURL];
[documentInteractionController presentOptionsMenuFromBarButtonItem:sender animated:YES];

结果(如果我在真实设备上运行,将显示更多应用和 AirDrop):

enter image description here

我想要获得的示例 - 减去底部的 3 个额外选项:

enter image description here

如果由于某种原因我无法使用字符串(而不是照片)获取上面的屏幕截图,我愿意按照 Dropbox 的方式实现它。他们在底部添加了一个“打开方式”按钮,显示不同的工作表,仅显示其他应用程序。请注意,我仍然需要在原始工作表上使用“复制”选项。

enter image description here

enter image description here

最佳答案

问题 1:为什么我的代码会导致崩溃

根据 Foundation Constants Reference,Cocoa 错误 260 是一个 NSFileReadNoSuchFileError文档。查看您的代码,如果 self.myUITextFieldnil,我可以看到文件创建可能失败的唯一方法。

我建议您先检查一下。如果该属性不是 nil,则检查 writeToFile:atomically:encoding:error: 是否返回错误。


问题二:如何让复制选项出现

首先,将委托(delegate)分配给 Controller :

documentInteractionController.delegate = self;

然后实现下面两个委托(delegate)方法:

- (BOOL) documentInteractionController:(UIDocumentInteractionController*)controller canPerformAction:(SEL)action
{
if (@selector(copy:) == action)
return YES;
else
return NO;
}

- (BOOL) documentInteractionController:(UIDocumentInteractionController*)controller performAction:(SEL)action
{
if (@selector(copy:) != action)
return NO;
// Perform the copy: action
return YES;
}

自 iOS 6 以来,这两种方法都被标记为已弃用,但它们似乎在 iOS 7 中仍然有效。不幸的是,我不知道如何在没有这两种方法的情况下实现 copy: 操作 - 而且也没有Apple,在我看来是这样,因为他们不提供替代品,而且官方 Document Interaction Programming Topics for iOS文档仍然愉快地引用这些方法,但没有表明它们已被弃用。

无论如何,这是第二个委托(delegate)方法的简单但完整的实现:

- (BOOL) documentInteractionController:(UIDocumentInteractionController*)controller performAction:(SEL)action
{
if (@selector(copy:) != action)
return NO;

NSStringEncoding usedEncoding;
NSError* error;
NSString* fileContent = [NSString stringWithContentsOfURL:controller.URL
usedEncoding:&usedEncoding
error:&error];
UIPasteboard* pasteboard = [UIPasteboard generalPasteboard];
[pasteboard setString:fileContent];
return YES;
}

关于ios - 如何为纯文本实现在应用程序中打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23306057/

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