Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm starting to develop a simple application for iOS, and this application is a simple gallery of some photo (taken from a website). The first problem I encountered is how to create the view for the gallery.

The view should be something like this (or the Photo App): Sample View

however doing a view this way is problematic, first because it uses fixed dimension, and I think is a bit difficult to implement (for me).

The other way is to use a custom cell within a tableview, like this: custom cell

but it is still using fixed dimension.

What's the best way to create a gallery, without using any third part lib (like Three20)?

Thanks for any reply :)

PS. I think that using fixed dimension is bad because of the new iphone 4 (with a different resolution), am I right?

share|improve this question

5 Answers

up vote 32 down vote accepted

You should check out AQGridView which does exactly what you are trying to achieve. Even if you want to write your own custom code, have a look at the AQGridView source as more than likely you will need to use a UIScrollView as a base.

share|improve this answer

In case that you want to use third party classes, the next tutorials can be mixed, they worked for me. Here's a good grid view:
http://www.raywenderlich.com/130/how-to-write-a-custom-image-picker-like-uiimagepicker

And if you want to load them asynchronously, use this: http://iphonedevelopment.blogspot.com/2010/05/downloading-images-for-table-without.html

Both tutorials are very well described and have source code.

share|improve this answer

The difference in resolution shouldn't be an issue since iOS, if I recall correctly, scales up UI components and images to the right resolution if it detects that it has a retina display. An aside; remember to start making hi/lo-res versions of your graphics if you intend to support both screen sizes without degradation of quality.

As long as you design things in terms of points instead of pixels (which is the way it's done in XCode 4), iOS will be able to handle scaling for you transparently. On a small screen one point will be one pixel, whereas it will be two pixels on a retina display. This allows it to render things with a crisper look on retina displays. Source

I know this question is old, but I didn't see anyone addressing the issue of fixed widths, so I thought I'd contribute for once.

share|improve this answer

If you don't want to use a third party library, you should do this in UITableView rows. Because of the way UITableView caches cells, it's relatively lightweight in memory. Certainly more so than a possibly very large UIView inside a UIScrollView. I've done it both ways, and I was much happier with the UITableView.

That said, next time I need to do this? I plan to use AQGridView.

share|improve this answer

Um, since ios6 came out, the right way to do this is with Collection Views:

Apple Docs on CollectionViews

Also, see the two WWDC 2012 sessions on them:

Introduction to Collection Views
Advanced Collection Views

Sadly, Apple did not include a simple gallery or coverflow layout, but it's pretty easy to make one.

share|improve this answer
I'll check this out. Does it work on iOS 5? – patrick Feb 1 at 13:00
1  
No. 6 only but at least you should be pointing in that direction. – Rob Feb 1 at 16:53
any pointers for a gallery layout with UICollectionViews? – Jonathan Lin Mar 20 at 6:36
that's the default.. the docs are pretty good actually, and since this post, I've had occasion to do shelves, etc., in projects, not bad.. – Rob Mar 20 at 14:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.