Integrate Photo Gallery + iPhone - iphone

I am making an app in which on one of the view I want to display photo gallery photos thumbnails. If I click on any image then It must get zoom, there is also accept and delete functionality on zoom view. If user want to delete the photo then It must get delete from the photo gallery. I have tried a lot to implement this functionality but unable to get the required output.
How should I integrate the default photo gallery with my app? Following are the images which make you more clear about the functionality I want to implement. How can I start to make this functionality?

hi there is a good framework which is capable of this
three20
If you want other similar things goto cocoacontrols

Use KTPhotoBrowser
https://github.com/kirbyt/KTPhotoBrowser

Related

iphone built in gallery viewer

In my application I have a list of UIImages downloaded from web. I need to create a gallery where these images can be rotatable, zoomable and swap to view the next and previous. Is there a way to open images in iphone built in gallery viewer. or I will have to make it all through.
The functionality is known as UIImagePickerController.
Check this for more details :
http://zcentric.com/2008/08/28/using-a-uiimagepickercontroller/

How to create an image app for iphone?

I was wondering how to go about creating an image app for the iphone. I know how to create an iphone app. I was just wondering what the best way to make an image app is. I want the user to be able to import an image, and then the app will add an effect to it like blur it or tint it or warp it. How can I do this? I've been searching forever. Please help.
I encourgae you to look into a few image processing libraries for iOS that are out there. A search on Google will return a few options..
Here's one > http://mobileorchard.com/a-simple-iphone-image-processing-library/
You should also look into the sample code provided by Apple on GLImageProcessing > http://developer.apple.com/library/ios/#samplecode/GLImageProcessing/Introduction/Intro.html
Regarding importing pictures into your app; there are several examples out there on how to do so through the UIIMagePickerController. Here's one >
http://maniacdev.com/2010/02/uiimagepickercontroller-using-the-camera/

How to make slide show in iPhone?

I need to make slide show for number of images. But all the images are coming from server.
How to make this?
Is it possible to attach slide show feature in Three20 framework?
Thanks in advance....
Three20 has slideshow functionality in the photo framework, but I've never used it. It's available in the TTPhotoViewController.

Need way to view an album of pictures on iPhone

I don't need to take pictures or access the iPhone photo album. I simply need to display a bunch of pictures in thumbnail form and then let the user view the larger version when tapped.
Would I use an uiimagepickercontroller or another controller?
If so does anyone have an example of how I load in the pictures to view?
You can use the same tools that the facebook app uses: three20
Joe Hewitt, the developer behind the facebook app has open sourced much of his work. You can get it and many other goodies here: http://github.com/joehewitt/three20

UIScrollView as image viewer

I have to use UIScrollView as image viewer like Photo app. The UIScrollView is supposed to show photos with swiping, zooming and rotating with interface rotation.i have to load minimum 20 images.is it possible? which is the best way? plz post some sample codes.
I've written a simple and easy to use photo browser called MWPhotoBrowser which you should be able to look at and dissect.
It is an implementation of a photo viewer that I wrote allowing the user to view one or more images in a similar way to the native Photos app. It can display one or more images by providing either UIImage objects, file paths to images on the device, or URLs images online. Photos can also be zoomed, panned, and navigated with previous/next buttons.
View MWPhotoBrowser on GitHub
Hope this helps!
Refer to the sample application page control here https://developer.apple.com/iphone/library/samplecode/PageControl/ , it should help you get started, they have a scroll view that you can use to scroll through a bunch of pages, you can modify this to do pictures. It doesnt do zooming o rotationg but its a good place to start