Disabling "use mouse" makes it work on IOS, so I just added this to LeanTouch.cs:
void Start()
{
if (Application.isMobilePlatform)
useMouse = false;
else
useMouse = true;
}
And now it works on both platforms. (Use simulator disabled)
thank you.