Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
123456789101112131415 |
- #pragma once
-
- @interface UnityView (tvOS)
-
- - (void)touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event;
- - (void)touchesEnded:(NSSet*)touches withEvent:(UIEvent*)event;
- - (void)touchesCancelled:(NSSet*)touches withEvent:(UIEvent*)event;
- - (void)touchesMoved:(NSSet*)touches withEvent:(UIEvent*)event;
-
- #if UNITY_TVOS_SIMULATOR_FAKE_REMOTE
- - (void)pressesBegan:(NSSet<UIPress*>*)presses withEvent:(UIEvent*)event;
- - (void)pressesEnded:(NSSet<UIPress*>*)presses withEvent:(UIEvent*)event;
- #endif
-
- @end
|