Skip to main content

Dynamic photo gallery in iphone [closed]



I want to make a dynamic photo gallery in my iPhone application.All images in photo gallery come from server.Can anybody guide me how i can do it. Thanks.




Comments

  1. Use Three20 Framework, Which provides all photo library UI.
    You can use same for pull images from local as well from server too.

    ReplyDelete
  2. If you have stored images on server, that you retrieved using XML or JSON parsing, in format of base64 encoded image! Then what you can do is first convert that image using base64 decoder, then store it into an UIImageView which dynamically loaded, and add that imageView as subView of your view. That's all you need to do for all the images you've got.

    It isn't the code solution for your problem, but I'll do this way if I've to do so.

    ReplyDelete

Post a Comment

Popular posts from this blog

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly.