0
我有一個自定義共享器與ShareKit重定向到我的應用程序的UIViewController做一些操作。通常,我用這個代碼做的iPhoneiPad - 從ShareKit共享器顯示自定義UIViewController
//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
,但使用整個屏幕。
在此先感謝