Photo Slider Iphone - iphone

I want to make a slider just like CNN's iphone application has.
http://i56.tinypic.com/15wdphg.jpg
i search all over but i didn't get any help even any clue. If some one has any idea than please share it with me, so i will make this slider.
Thanks

That way of displaying images is called Coverflow - see the question discussing open-source libraries for iphone with cover-flow implementation.
To the libraries listed there I would also add Tapku library.

Related

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/

What is the iPhone API or Class that does picture scrolling with the cool reflection effect?

For example, in CNN's iPhone app, if you rotate the phone into landscape mode, it shows all the stories as pictures that you can scroll with your finger. It looks really polished with even a "reflection" effect. I've seen another app also do this, leading me to believe that it is a standard iPhone SDK API.
Here is a link to a screenshot from the CNN app so you can see what I'm talking about:
http://www.itnewsafrica.com/?p=8422
Anyone know what Class this is?
Thanks!
Try this: Open source CoverFlow library for iPhone
Also do a google search for Coverflow. I think that might do what you want or something close to it.

Scrolling the iphone simulator

I am a beginner in iphone development, and I want to make scrolling in the iphone simulator.
How can I make it possible? Can anybody give me code for it?
You should look into the ScrollViewSuite example that Apple gives then. They use scroll views in a couple different ways to show off what they can do.
More information here: http://developer.apple.com/iphone/library/samplecode/ScrollViewSuite/Introduction/Intro.html

Grid View as demoed in iPad

I'm trying to develop a grid-like application for the iPad. Has anyone seen a control that displays info in a grid? In the demos they use a grid-like layout in both the iBooks store and the pictures application.
Specifically in pictures, they are displaying a dynamic list of data in a grid.
I can work around it, of course, but I'd rather use a control if one exists. Thanks!
DTGridView:
http://www.danieltull.co.uk/blog/2009/10/28/dtgridview/
You should try AQGridView it does what you need.
Here are few screens of apps that use this library:
The people who know what controls are or or not in the 3.2 iPhone dev tools have all committed to Apple NDA so we can't tell you.
Steve is always watching.
If you have signed the NDA you should go to the Apple boards and ask.
You can however, make a gird like display very simply with the standard UITableview. Just have a tableviewcell subclass that displays columns. It took me about an hour to reproduce the photo picker display using that method.
Nope, you will have to create your own. People have been writing Home Screen compatible views though, so you might want to search for open source projects with that functionality.

Question about making a book like the contacts book on the iPad

For any of you out there who have had a chance to download the iPhone 3.2 sdk and play around with the simulator knows that one of the apps built in is a contacts book. When you open this app up it looks like a book, and has a nice user friendly way to edit and view contacts. So if I wanted to make an app that uses a similar format, meaning I'd want it to be a book, that would allow for editing and viewing of different items. How would I do that? Is there a book template I just don't know about? :) I'm guessing that the book is just a nice photoshopped image that they are just laying the respective uiviews over the image but I may be wrong...any insights as to how I'd be able to implement a book as described would be greatly appreciated!! Thanks
I recently built an app that had a "contacts" functionality. I personally didn't want a book, so instead using photoshop, created a clipboard image for my background. The background they are using that looks like a book, is just that, a background image. they have other views and functionality built into the view controllers to make it slide around for editing.