views:

123

answers:

2

If you know OpenFlow or CoverFlow, maybe you will have interest for this question.

Latest codes is here http://github.com/tupps/OpenFlow

What I wanna is make each image as button or menu, click it will enter another view, and also can come back by click some "back" button.

Any clues to implement this feature ? Thanks

A: 

Let me answer my question.

It is quiet easy to do this. There is one delegate API like double tap processing, so just override something there.

Forrest
So, do you have an example about it ? I would like to see this.
fyasar
A: 

hi Forrest, i try to do the same as you, but i cant find that double tap processing(I'm new on this), please can you help me?

An example would be great!

Thanks.

guerrix
in the touchEnd(...) you can check if it is double tap by checking the touches count if equal to 2.
Forrest
thanks a lot, really appreciate your response it was really helpful...
guerrix