0

I want to show users only picture/video taken in my app on camera roll. So, when user click gallery button, my app only show "my app" album. Is this possible ?

  • 1
    Possible duplicate of [How to fetch all images from custom Photo Album - swift](https://stackoverflow.com/questions/32169185/how-to-fetch-all-images-from-custom-photo-album-swift) – Willjay Oct 26 '17 at 03:45

1 Answers1

1

You can do one thing

When you save your picture captured by your camera, you can save then specific folder like "AppName-Photos" so each photos save in that particuler folder and when you retrive album just take only photos when there is album name "AppName-Photos" and ignore others

To save photos to your own custom album you can refer this link : iOS save photo in an app specific album

To Fetch only custom album photos you can refer this link: iPhone : Photos framework : how to get only those album/images which created by my app only not by others?

Anita Nagori
  • 707
  • 1
  • 7
  • 21