1

I'm looking for some cool libraries out there to display a bunch of images in my iPad application.

I think they are already out there, and I don't have to start from scratch, but I can't find some good ones.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
choise
  • 24,636
  • 19
  • 75
  • 131

6 Answers6

3

Check out AQGridView as well.

Gianz
  • 495
  • 3
  • 5
2

Check out KTPhotoBrowser, I use it in a universal app, and it works pretty good.

Also, search Github : Photo Gallery for more open-source solutions.

WrightsCS
  • 50,551
  • 22
  • 134
  • 186
0

See the answers to these questions on Stack Overflow:

There are probably more questions about the same subject. Seek and you shall find.

Community
  • 1
  • 1
0

I would simply create a web page with all the images, and then display it using UIWebView.

Sylvain
  • 1,553
  • 11
  • 15
0

Did you want to do the coding yourself?

I found the Apple example "LazyTableImages" to be a useful and elegant way to display many images in a table view. It's important to a) keep the scrolling nice and smooth, and b) not freeze the user interface while downloading.

coco
  • 2,998
  • 1
  • 35
  • 58
-1

Have you tried using a UIImageView?

Altealice
  • 3,572
  • 3
  • 21
  • 41
  • shure. but i dont only want to display a single image. i need something to diplay a lot of images. probably something like the appstore uses or a "popup" controller for images – choise Jan 12 '11 at 14:46