2

My app writes to a custom photo album using ALAssetsLibrary. Is there a way to use UIImagePickerController to open to my custom album (and preferably only allow viewing of my album)?

Undo
  • 25,519
  • 37
  • 106
  • 129
Keller
  • 17,051
  • 8
  • 55
  • 72

1 Answers1

1

Nope.

This is another one of those annoying limitations with the built-in controls. If it were possible, some insanely smart person on GitHub would build me thing to allow it.

Unfortunately, the UIImagePickerController is a private, system class, which doesn't really allow alteration.

What you might do, though, is something like this:

Pick an image

This app stores its images in the 'Unicorn' album.

Choose Image

Community
  • 1
  • 1
Undo
  • 25,519
  • 37
  • 106
  • 129