New Command not triggering in IOS emulator

Hallo,

when I ran the debug on the IOS Emulator, the "New Command" not trigger in IOS Emulator. On Android & UWP it is working fine. Someone any Idee?

Using the Standard example code:

        private void rightImage_BindingContextChanged(object sender, EventArgs e)
        {
            if (rightImage == null)
            {
                rightImage = sender as Image;
                (rightImage.Parent as View).GestureRecognizers.Add(new TapGestureRecognizer() { Command = new Command(Delete) });
                rightImage.Source = ImageSource.FromResource("CycleSplit.TrashImage.png");
            }
        }

        private void Delete()
        {
            //this.viewModel.OrdersInfo.RemoveAt(swipedRowIndex - 1);
        }

Thnaks for any help

3 Replies

SS Sivaraman Sivagurunathan Syncfusion Team April 16, 2020 06:17 AM UTC

Hi Markus 

Thanks for using Syncfusion support. 

We have checked the reported issue in iOS 13.4 version. We are able to reproduce the reported issue from our side. This issue due to Xamarin.iOS SDK. There is break in gesture and they are fixed the issue and it will be available in next Xamarin.iOS SDK itself. Also they have workaround for the same. Kindly refer the following GitHub link for more details.  


Regards, 
Sivaraman S 



MA Markus April 16, 2020 06:32 AM UTC

Hallo Sivaraman,

after updating to latest version in Visual Studio for Mac (8.5.3) and Windows (v16.5.4), fixed the issue. Thank you for pointing out to the GitHub forum thread

Thanks,

Markus


SS Sivaraman Sivagurunathan Syncfusion Team April 16, 2020 07:47 AM UTC

Hi Markus, 
 
Thanks for your update and we are glad that the issue resolved.  
 
Regards,  
Sivaraman S 


Loader.
Up arrow icon