我有一个带有 ShareKit 的自定义共享器,它重定向到我的应用程序的 UIViewController 以执行一些操作。通常我使用此代码在 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
从我的共享者那里显示一个,但使用整个屏幕。
提前致谢