Replicating Cardex View of Roambi App - iphone

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

Related

cocos2d CCTableView example

I am currently in the middle of developing a card game using cocos2d. I will need to add a tableview (CCtableview) containing the image of the card and the corresponding statistics of them. Examples on the internet are proving to be scarce - does anyone have a good example i can follow? Any help would be much appreciated - many thanks
Take a look at this implementation, it uses a standard table view.
https://github.com/sapusmedia/Sapus-Tongue/blob/master/Classes/HiScoresNode.m
probably not the cleanest solution but cctableview had a number of bugs and so i just wrote my own implementation

Draw countdown circles

I would like to draw, in a ViewController, a countdown like in the following image:
Unfortunately, I don't have any idea on how to realize this. I will be please if someone could give me a clue on this.
Cheers.
Cyril
LOL, I am considering to write one like this these days.
You would definitely like this. :]
Check it out here: Circle-Counter-Down
A quick thought, I would not like to draw it by using any iOS frameworks :), Just use small UIWebView and run javascript(Only works if user enables javascript, but hey I have seen no one yet who doesn't use javascript).
Javascript polar time can be found on internet, open source like,
http://oneorangesoftware.com/polartimer/
change and edit a bit and off you go! Awesome time!
Cheers!
If you don't like above approach than you may look into this code,
http://www.herbert-siojo.com/2011/04/19/drawing-a-countdown-timer-ios/
nicely crafted however to achieve same look as yours you may have to tweak a bit!
Beware of this line in code,
[self performSelector:#selector(cancelPie:) withObject:timer afterDelay:sliderIntervalDelay.value];
just change to,
[self performSelector:#selector(cancelPie:) withObject:timer afterDelay:60.0];
Credit : Goes to a developer who posted their code on http://www.herbert-siojo.com/2011/04/19/drawing-a-countdown-timer-ios/.

Fancy image viewer for iPhone, how to do?

Hello any one know component to make this kind of image viewer ? Or maybe some code, or any help ?
http://img860.imageshack.us/i/44940170.jpg
This image viewer diagram you have is based on Apple's cover flow. There are a few open source projects which replicate this. I have used OpenFlow before and it is pretty good.
Flow cover would be another example:
http://www.chaosinmotion.com/flowcover.m

iPad flip-clock with Core Animation

I'm trying to make the flip-clock animation, I find this tutorial very interesting
http://www.voyce.com/index.php/2010/04/10/creating-an-ipad-flip-clock-with-core-animation/
but I still can't make it work.
If someone did it and could share is experience or even the code source that will be really nice.
Thanks,
P.S: if you have other tutorial link please share them.
What, exactly, do you need help on?
At the moment, there is some sample code available at Google Code:
http://code.google.com/p/idharmaclock/source/browse/trunk/LostoClock/Classes/LostoClockViewController.m?spec=svn2&r=2
Referenced from:
http://www.iphonedevsdk.com/forum/tutorial-requests/52329-flip-clock-animation-tutorial.html
check this out:
Flip Transform
I actually made a small framework out of the tutorial. Check:
https://github.com/jaydee3/JDFlipNumberView
It contains two main classes:
JDFlipNumberView (animated digits)
JDDateCountdownFlipView (a date countdown, just init with a date, set a frame and there you go.)
In any case, you just need to do three steps:
Init the class
Set a target value (or a date)
Start the animation
I don't know if you can use this but who knows. There's a HTC hero theme for the iPhone, installable on jailbroken iPhones. This is not at all interesting, except for one feature of the theme. It has the flipclock. This theme shows the time on the homescreen exactly like you want. You can download the sourcecode of the theme here. You might have to dig into the code but the flipclock is there somewhere!
Good luck and I hope you'll be able to make your application work like a charm!

how to create a cover flow menu like ipod app when turn in landscape mode?

As per title, how to create such cover flow menu? Have any reference code or tutorial talk about this?
When you install Xcode, look in
/Developer/Examples/Quartz/Core
Animation/CoverFlow
to find an example coverflow app. I hope this helps you.
Plausible Labs has a licensable implementation of a CoverFlow-like UI here.
http://www.chaosinmotion.com/flowcover.m
This is open source project base on opengles. hope this can help