Customizing a UIImagePickerController

后端 未结 1 1320
暗喜
暗喜 2021-01-28 10:12

I\'d like to make customizations to a UIImagePickerController that allow the user to select a photo from one of their photo albums. I was wondering if the following is possible

相关标签:
1条回答
  • 2021-01-28 10:57

    Well, it seems I've found a solution. If you implement the following navigation controller method:

       - (void)navigationController:(UINavigationController *)navigationController willShowViewController:(UIViewController *)viewController animated:(BOOL)animated 
    {
    }
    

    It will give you access to the navigational controller that controls the picker, and also will send a pointer to each view controller that appears. So I believe with those two items, you can manipulate whatever you please.

    0 讨论(0)
提交回复
热议问题