I stuck again at a Problem.
I want to make a little Slideshow (functionality like CoverFlow -> Thumbnails can scroll horizontally).
I have 10 Pictures that should be as Thumbnails in this show. when i "press" a pic, this pic should go fullscreen.
Can anyone give me a little help or even a tutorial to do such a thing?
Thank You ;)
Check out OpenFlow for an open source replacement.
Related
In my app, I take some pictures and I display them in thumbnails.
I want to zoom them when user touches them.
What's the best way to do this?
Thanks
Edit:
I've considered a modal view.
I don't save the pictures in the gallery. I display them on the screen, that's all.
If you use the UIImagePickerController you can set it's property allowsEditing to YES to support scaling taken pictures.
Edit: If you already have an Image, please take a look at the UIScrollView
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.
iam developing an app in which, images are to be scrolled on touchesmove i.e, swipping left /right.
I also have to display previous and next images beside present image in protrait mode.
I have seen the covertFlow sample, which is very close to my app, but i want it in horizontal mode. Please suggest me how can i acheive it , links related to it can also be helpful for me..
thanks in advance.
Well how about taking the open source CoverFlow implementation and modify it to work in portrait mode?
You can get sample code in this tapku Library
I solved my query and it is working without using any libraries.
I used the concept of lazyloading to download images, and i placed the images in scrollview which helps to scroll the images.
The following link used to load images asynchronously.
http://www.markj.net/iphone-asynchronous-table-image/
i follow the instruction of this tutorial
how to add coverflow effect on your iphone app openflow
i used the last version of openFlow(http://github.com/tupps/OpenFlow) and works great, but What I need is make each image as button or menu and when i click it, this will open another view, but so far I can't do that .
Any clues or tips to implement this feature ?
Thanks
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