kite
kite

Reputation: 679

Multi touch with appcelerator titanium

I'm currently building a iPhone App which require the multitouch (here to resize an ImageView) but I didn't find any documentation / tutorials about such a feature.

Is it possible to do so?

then how?

EDIT Here is a link I found, but i don't know how to use it (I mean, when I try to build this like it's said in the readme, I have errors about Timodule/h, TiUIView.h etc). https://github.com/masuidrive/TiMultitouch

Thanks,

KiTe.

Upvotes: 2

Views: 1927

Answers (2)

kite
kite

Reputation: 679

well, no way to do a well handled multitouch on iPhone with Titanium simply for now. Let's wait the 1.7 version. Or switch technology ^^

Upvotes: 1

gerry3
gerry3

Reputation: 21460

If you just want to do pinch to zoom stuff, try adding your ImageView to a ScrollView and setting up zooming on the ScrollView.

If you need custom stuff, you may be able to listen for the touchstart, touchmmove, and touchend events that are fired by your views.

Upvotes: 1

Related Questions