アプリケーションの UIViewController にリダイレクトしていくつかのアクションを実行する ShareKit を備えたカスタム共有者があります。通常、このコードを使用してiPhoneでそのタスクを実行します
//Create a new snippet with the item to be shared
Snippet * selectedSnippet = [[Snippet alloc] initWith: item.title :item.text :@"" : 0];
//pass the item to the controller
detailsController.currentSnippet = selectedSnippet;
//Show view controller with the navigation controller
[[SHK currentHelper] showViewController: detailsController];
しかし、これは私のUIViewController
トリミングを示しています。私の推測は、モーダルウィンドウとして表示されているためです。
[[self navigationController] pushViewController: detailsController animated: YES];
最後の行と運がない代わりに。私が望むのはUIViewController
、共有者からのを表示することですが、画面全体を使用することです。
前もって感謝します