iOS - select images based on album - ios

I have gone through several tutorials trying to get this through my thick skull with little luck. I am trying to allow users to select a photo album and be able to iterate through the photos in it. I have code going now to list the names of the various photo albums, but actually finding and selecting images from these using what I've found about the ALAssetsLibrary is driving me insane.
Looking for some direction or a pointer to a piece of sample code that does this on iOS5+, if anyone has any suggestions.

Take a look at the ELCImagePickerController project which shows both how to get the albums and how to get the images inside each album.

Related

How do I get list of photos displayed from urls using objective c?

I only know how to display one photo with url but how about a list of photos with different urls? And it will be better to also show the name of the photo under each photo
Thanks for any hints
You can use tableview with custom cell to show the list. For more specific help please share more information or you codebase.

How to get all local images and load it into an array in swift

i haven't found yet any solution to load and get all gallery images. so any help ?
i tried with picker controller but it doesn't give me a way to get all images without selecting any of them . the collection view look like this
You can achieve this by using AVFoundation and Photos framework.
Visit Photos framework, and download sample source code.

creating a (simple?) photo gallery

I have started learning Swift and I created a very simple app - photo gallery, videos, webView for our website.
I'm following this tutorial on youtube: https://www.youtube.com/watch?v=JbPc62YWhPQ and combined a few other ones to get that nice 3 column layout for the photo gallery to go along with it.
This works well for now, but when I click an image, I've to go back and select another image. I've been trying to find a way to swipe across and found this tutorial: https://www.youtube.com/watch?v=LaWnv5sRpho
Unfortunately I can't seem to figure out how combine both. Maybe I've been googling for the wrong things? Can anyone help or direct me to a tutorial that could bridge these 2 things together?
They want something that functions similar to the native Photos app. Not sure how to swipe.

IKImageBrowserView in iOS?

I am trying to develop an application that needs to display pictures in a gallery view. One of the seemingly most straightforward ways to do this is use the IKImageBrowserView. But I cant find any info pertaining to the iPhone. Would anyone out there have a better suggestion for displaying a gallery of photos on iOS? I also want to have the ability to tag the photos, if you guys have any suggestions for that it would be greatly appreciated, thank you!
If you want to display a collection of data in a grid format (i.e. a gallery of photos) you should look at UICollectionView.

iOS iTunes Album Cover type (or similar) Image Display

Is there any tutorials that show how to make a Image display similar to the Album Art diaply in iTunes? Or anything similar. I followed code posted here, but I just cannot seem to get it working in the new XCode. Opening his project works fine, but using it in my own, the UIImageView renders the images beyond it's borders, making them appear over each other.
Any help would be appreciated.
I assume you're talking about CoverFlow?
I wrote a free, very easy to use CoverFlow library. It's modelled on the way that UITableView works, so if you can use that, you can use this. You can get it from here:
https://github.com/nicklockwood/iCarousel

Resources