public TouchRecognizer(Element element, UIView view, UITestDemo.TouchEffect touchEffect) { this.element = element; this.view = view; this.touchEffect = touchEffect; viewDictionary.Add(view, this); }
protected override void OnAttached() { // Get the iOS UIView corresponding to the Element that the effect is attached to view = Control == null ? Container : Control; // Uncomment this line if the UIView does not have touch enabled by default //view.UserInteractionEnabled = true; // Get access to the TouchEffect class in the .NET Standard library UITestDemo.TouchEffect effect = (UITestDemo.TouchEffect)Element.Effects.FirstOrDefault(e => e is UITestDemo.TouchEffect); if (effect != null && view != null) { // Create a TouchRecognizer for this UIView touchRecognizer = new TouchRecognizer(Element, view, effect); view.AddGestureRecognizer(touchRecognizer); } }