Context: I have two functions inside my controller that both present a UIImagePickerController with delegate=self
I should do different actions with the image received based on which method spawned de picker
In android I can set a requestCode that behaves like a unique request identifier so when the result comes in delegate function (in this case func imagePickerController) i can differentiate it and i know what to do with it
I don't seem to find anything to differentiate inside delegate function "imagePickerController" so I know which picker caused to method to be called