我有一个带有几个按钮的视图,用于呈现 UIImagePickerControllers(相机和媒体选择器)。当我创建 UIImagePickerControllers 时,我给它们起不同的名称并以模态方式呈现它们,如下面的代码所示:
- (void) startMediaBrowserFromViewControllerForBGImage {
UIImagePickerController * mediaUIForBGImage = [[UIImagePickerController alloc]init];
//i also set a bunch of different settings here, but it doesn't matter for this purpose
mediaUIForBGImage.delegate = self;
[self presentModalViewController: mediaUIForBGImage animated:YES];
}
现在您也可以在代码中看到,我将委托设置为self
,这就是我对所有 UIImagePickerController 所做的事情,但问题是 - 在委托方法中,我如何知道哪个 UIImagePickerController 调用了委托方法。因为对于每个 UIImagePickerControllers,我需要对媒体执行的操作都不同。在委托方法中,我确实获得了UIImagePickerController
参数,但它始终具有从方法(选择器)分配的名称。我可以用什么来知道要引用哪个 UIImagePickerController?