In Xamarin Forms.
When I call Calendar.ScrollAppointmentIntoView(theItem); in Android it works fine.
In iOS when the same call is made, the calendar scrolls about 1 pixel, then stops.
I put the call into a timer just to make sure it's there.
Device.StartTimer(TimeSpan.FromMilliseconds(3000), () =>
{ Device.BeginInvokeOnMainThread(() => { Calendar.ScrollAppointmentIntoView(theItem); });
return false; // True = Repeat again, False = Stop the timer
});