0

According to the iOS docs, FPPickerController:didPickMediaWithInfo: should return the following data:

Keys in the info dictionary FPPickerControllerFilename FPPickerControllerMediaType (When Possible) FPPickerControllerMediaURL (When Possible) FPPickerControllerRemoteURL (When Possible) FPPickerControllerOriginalImage

However, the only information I ever get is:

FPPickerControllerThumbnailImage = "<UIImage: 0x9712dd0>";

Is there anyway to get the Filename and/or RemoteURL before upload begins?

mjtitus
  • 165
  • 6
  • You should be getting the filename. Since filepicker hasn't done the file movements yet, you won't be getting a remote url until the operation is complete. – Liyan Chang Nov 22 '12 at 01:14

1 Answers1

0

That is working as expected. The documentation was wrong and that has been fixed.

Liyan Chang
  • 7,721
  • 3
  • 39
  • 59
  • That being said, it seems a bit silly not to pass back things like filename and filesize and I could see that in future updates. – Liyan Chang Nov 23 '12 at 23:21