現在の私のコードは次のようになっています。
- (UIDocumentInteractionController *) setupControllerWithURL:(NSURL *)fileURL
usingDelegate:(id <UIDocumentInteractionControllerDelegate>) interactionDelegate {
UIDocumentInteractionController *interactionController =
[UIDocumentInteractionController interactionControllerWithURL:fileURL];
interactionController.delegate = interactionDelegate;
[interactionController presentOpenInMenuFromRect:CGRectZero inView:self.view animated:YES];
return interactionController;
}
- (void)showOptionsMenu
{
NSURL *fileURL = [NSURL fileURLWithPath:@"2bm.key"];
docController = [self setupControllerWithURL:fileURL
usingDelegate:self];
}
- (IBAction)KeynoteButton:(id)sender {
[self showOptionsMenu];
}
これにより、画面の左上に開いた基調講演のバブルが生成されます。このバブルが現れる場所に移動することはできますか?または、このバブルにタッチイベントを強制して、ユーザーが選択できないようにすることもできます。基調講演は自動的に開きますか?基調講演はこれをサポートしていないため、これにURL参照スキームを使用することはできません。
ありがとう