I’m trying to rewrite the tapcontrol and I got stuck with the variable touches.
in Java script they declare it on the fly.
var touches = iPhoneInput.touches;
but what type would that be in C# ?
can’t get it to work
hope you can help me
I’m trying to rewrite the tapcontrol and I got stuck with the variable touches.
in Java script they declare it on the fly.
var touches = iPhoneInput.touches;
but what type would that be in C# ?
can’t get it to work
hope you can help me
I think this is equivalent:
public iPhoneTouch[] touches = iPhoneInput.touches;
Thank you every much!