How to use image picker in iPad?

怎甘沉沦 提交于 2020-01-02 08:27:26

问题


I know how to use image picker in iPhone , although know need to use new class UIPopoverController in iPad, but still can not figure out one way to use image pickr in iPad, any one has the same problem ? thanks


回答1:


UIImagePickerController is just a view controller. If you know how to use a UIPopoverController to present a view controller, then it's just the same way.

UIImagePickerController* imagePicker = ...
UIPopoverController* popover = [[UIPopoverController alloc]
                                 initWithContentViewController:imagePicker];
[imagePicker release];
[popover presentPopoverFromRect:...];


来源:https://stackoverflow.com/questions/3210052/how-to-use-image-picker-in-ipad

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!