ipod albums landscae view - iphone

I would like to know if there's an API to implement a view which is similar to the iPod albums Landscape view. I tried using Scroll view but couldn't the get the required output.
Also, I would like to know if MMS can be implemented in an iPhone application. I did some searching, but no luck. Jailbreaking aside, is there any API which allows one to do that?
Thanks in Advance !!

you can try OpenFlow

Related

Is it okay to use custom popover controller in iPhone

Is it okay use popovers in iPhone app? What Apple's documentation say about that?
I'm not talking about the standard popover (which would throw an exception), but a custom library like this.
Thank you very much!
Apple wont have any problems with any Custom UI. You can go ahead..!!
Yes you can use popovers in iPhone app. The Best example of it is in Facebook app.

Use camera as overlay for uiview iPhone

I was wondering if it was possible to make the camera feed appear in a custom screen. Basically I have a uiview that I want the camera feed to appear in. I would then have custom buttons on the screen and stuff like that to take pictures and then email out the pictures.
Is there an easy way to do this, that will not get rejected upon app review? I have read before about using UIImagePicker and using cameraOverlayView, but I could not get that to work.
Sample code is greatly appreciated. Thanks in advance for your help!
Yes, you can use AVCaptureVideoPreviewLayer from the AVFoundation framework.

Is it possible to load a view when we click a coverflow image? (iPhone SDK)

Is it possible to load a view when we click a coverflow image?
Please suggest how this can be done.
Here you go ;)
http://www.chaosinmotion.com/flowcover.m
Please vote this post up if it helps :D
CoverFlow is not a standard iOS component. It doesn't have a public API. You'll need to either create your own or use a library someone else created.
In answer to your question, it is possible to load a view when you click an image. The iPod app probably creates a view, then uses an animation to present it onscreen.

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.

iPhone Image Gallery Like App Store

Can anyone point me in the right direction on how to implement a image gallery like the one that the App Store uses for screen shots of apps? I am trying to get images in a horizontal gallery so that the user can flick through them. The app store nicely snaps to each image.
If you want an "App Store screenshot"-like experience, check out this post by Alexander Repty. I've been looking at doing something similar, and UIScrollView's pagingEnabled functionality definitely won't get you there by itself.
Look at the UIScrollView API here. There is a property 'pagingEnabled' that should help you out.
Check out Three20. http://github.com/facebook/three20/