360 on iOS by using a image sequence - iphone

I got a sequence of images and I'd like to create something like this:
http://www.apple.com/html5/showcase/threesixty/
Google wasn't my friend at all. Which class/lib should I use?
Thanks!

Ended up creating my own view for that. Here's a download link in case anybody needs to do this.
http://www.fvalente.org/blog/2011/12/19/fvimagesequence-for-mac-os-xios/

Related

How to use FLICKR API on xcode to show an image of the current position?

My question is simple: how can i use FLICKR api to show on the screen of my iphone/ipad an image of the place in the courrent position or, in alternative, an image of a choosed place?
thanks
i have not done an app related to this before. but you might want to try:
https://www.flickr.com/services/api/flickr.photos.geo.photosForLocation.html
and a library like this:
https://github.com/lukhnos/objectiveflickr

Replicating Cardex View of Roambi App

I am interested in replicating the Cardex View that is seen in the Roambi App.
By Cardex I mean
Please help.
Thanks.
EDIT:
I Have not tried this because I dont know how to go about it. It would be very kind if I could get some help.
You can use Nick Lockwood's iCarousel, which can be downloaded here.
With iCarousel, you can create effects like this:
well i repicated the same using cover flow, where i had to change the matrix co-ordinates. you might find the cover flow code in github
i think this link might help.
https://github.com/tuo/CoverFlow/tree/master/CoverFlow.xcodeproj

iPhone - Image selection similar to Music Album in iPhone

I am new in iPhone programming. I want to create a puzzle game and I would really like to implement and image selection screen similar to the way you select a Music Album in iPhone iPod.
I can't upload a picture, but I will send you a link if my description is not detailed enough.
I don't know what to search for details. Can you give me a hint if it is even possible to implement it?
Thank you a lot,
Andrei
Refer to this, it is much easier one.
That's called Cover Flow and there's an open source library that does something similar here.
Alternatively, Apple has a built-in UIImagePicker.

How to make an NumericUpDown on the Iphone?

I am trying to firgure out a way to make an NumericUpDown component for the Iphone. Anyone know if something like that already exists ?
Any idea what would be a good approach to create something like that ?
Thanks
If your NumericUpDown mean images in this google search then I can suggest you go with iphone UIPickerView or this one

how to create a gallery in iphone

hi i am new to iPhone. what i need is i have to create a gallery of images and that gallery consist only single row with group of images from the local folder in the project.And the images are shown as slide show. like for example 0,1,2,3,4,5 are images then they can appear like 0,1,2,3,4,5,0,1,2,...... how can i done is there any predefined applications like this or examples are there pls post link or code. thank u in advance.
You should take a look at the UIScrolleView class. It should help you to do your gallery ;-)
And add in the scrollView UIImageView to show images.
If you are searching for codes, take a look at http://github.com/facebook/three20 which (If i remember correctly), implements something like that.
Good Luck !