我发展与RoboVM iOS应用。 任务是在新窗口中打开相机或任何其他视图,然后返回到先前的一些结果。 我已经成功尝试UIPopoverController媒体链接,但它不是由iPhone成语的支持。 那么,什么是模拟的startActivityForResult在RoboVM?
PS。 代码UIPopoverController解决方案
final CGRect bounds = UIScreen.getMainScreen().getBounds();
UIViewController controller = app.getUIViewController();
UIImagePickerController imagePicker = new UIImagePickerController();
final UIPopoverController popoverController = new UIPopoverController(imagePicker);
imagePicker.setSourceType(UIImagePickerControllerSourceType.PhotoLibrary);
imagePicker.addStrongRef(popoverController);
popoverController.presentFromRectInView(new CGRect(x, y, viewWidth, viewHeight), controller.getView(), UIPopoverArrowDirection.Right, true);
popoverController.setPopoverContentSize(new CGSize(viewWidth, viewHeight), true);