Custom Cover Flow Implementation in iOS - iphone

Instead of Images in coverflow, I want to have a list buttons in a scrollView(For each of the image in the coverflow), clicking upon them should navigate to the other page, which again contains a list of buttons inside scrollview.

You can use iCarousel an open source library which accept UIViews as components :)
Hope this helps

Use - https://github.com/appcelerator/titanium_mobile/blob/master/iphone/Classes/AFOpenFlow/AFOpenFlowView.m
And override the touchesEnded event in AFOpenFlowView.m
This might help you.

Related

How can I make gwt-bootstraps togglebutton to slide?

I need to add sliding functionality to the togglebutton of gwt-bootstrap api. Currently I am having two images(upImage and downImage) which flips on click. I want them to slide.
How can I achieve it? Any idea is appreciated. Thanks in advance.
I don't really know about sliding if you are able to do it with css why not just use a label with a button class onto it and try? Or else here is another option that i would prefer use gwt bootstrap icons along with the newly added spin functionality. Docs is here
Example :
<b:Icon type="ROTATE_RIGHT" size="FOUR_TIMES" spin="true" rotate="ROTATE_180"/>
You can probably call the rotate and spin on click? Helps you?

How to show tickmark on image when it is selected

i want to show a tick mark on each picture which is selected. i have no idea about that.can anyone help me.
place a uibutton programmatically on the same location ad of selected picture .The button will be a custom button having transparent tick.png image.
Use need to use UIButton and two different set of images for more have a look to the below post,
Blog tutorial.
http://weheartgames.com/2009/06/simple-iphone-checkbox/
SO post,
Checkbox in iOS application
http://www.iphonedevsdk.com/forum/iphone-sdk-development/40592-any-way-make-uibutton-latch.html

Tab Like Selection

Can anybody please tell me how they have implemented the below thing whick looks to me like a TabBar but has something different from a simple tabbar.
The thing having "Offer" and "Wall", when each one is clicked, presents a different view.
Any sample code will be appreciated
Its a custom UIButton.
EDIT: What UI element might this be? (Custom tab-bar?). I had asked the same question a few weeks ago. There are two good answers there.
And google up for custom UIButton. You can find a few samples on your search
Its a custom view. You can always implement this kind of thing by using images. Say you have 2 different images. In one image offer is selected, and in another wall is selected. And you are using an image view to show them. An invisible button is placed in proper place. After tapping the button you can set the right image. And also if the images are not overlapping then you can use custom button.

Is this a UITableView? How does this work?

Click the header section(or whatever it calls) will unfold the relative subcells,and the left triangle get rotated.
I have no idea how to code this.Is there anyone help me? Any code snippets would be great help.Thanks a lot.
That is a UITableView. You will need to add transparent buttons or a similar UIControl to the section headers to trap the tap events and then load the cells underneath
you can now see how to properly do it in an
example by apple.

selection Menu like Tap Tap Revenge 3

I am wondering how to achieve selection menu like tap tap revenge 3 have.Do I need to make a whole custom class or any help which class should I drive my subclass.I tried to modify UIPickerView but I cant change background image and frame(both is private).
Thanks
Mrigank Gupta
Here is the link of image(not having reputation to post image)
http://www.freeimagehosting.net/uploads/345aed3aee.jpg
Making a custom control class will be easier than trying to shoehorn one of the existing ones.
Tapbots put together a little article on their work.
http://tapbots.com/blog/design/designing-convertbot
You should be able to use a few images, a button, graphics transforms and touch event handling to pull it off.