IKImageBrowserView in iOS? - 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.

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.

iOS How to create a custom image picker/browser

I have been looking around and haven't found a good answer for this.
Instagram uses an image browser/picker like . As you can see above the images from the photo gallery are displayed in a grid below and you can directly choose image from there instead of using the default image picker layout.
The Groupme app also does something similar..
Where images are displayed in a horizontal scrollable list and you can just choose from this.
I have been reading up on the image picker and the documentation says that subclassing is not support.
So my question is:
How do you create something like this?
If this is just a custom view that loads the images stored on the device. How do I access those images?
I just need a starting point and what to specifically look for (custom browser/image picker etc).
Thanks in advance.
You use the ALAssetsLibrary APIs, docs here.

iOS - select images based on album

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.

iOS Image Gallery scrolling horizontally

Hi I want to create an image gallery where you can slide left and right to see them. I was wondering what is the best way to do this or if there are any existant libraries I can use. I have attached an image of what I want to do.
UICollectionView is the answer for your question ,you can easily manage as many images as you want in the UICollectionView, please refer to the following link :
http://skeuo.com/uicollectionview-custom-layout-tutorial
Hope it will help you.
use iCarousel. They have a demo version of it. check it first before using it
If you are developing for native iOS a page control object is exactly what you are looking for

iPad Drawing Issue?

We are trying to develop a ipad app that allows the user to draw on an image, and then save the data for later editing as well. Some issues we are facing given in the document, http://bit.ly/dJgwhZ. Any help will be greatly appreciated.
Thanks.
I think you would greately benefit from looking at this sample code; it is called GL paint. It does most of what you want to do, you just need to implement the photo as background and saving to the library.
Hope it helps!

Resources