Hi,
I have a problem with SfSchedule on iOS, (work perfectly on Android), to clean-up the schedule.
I use to last version of Syncfusion, 15.3.0.29 and last version on iOS 10.3.3 (iPad Air 2 and iPhone 6).
For navigate through views, I use to MasterDetailPage.
When I clicked on back button, the SfSchedule make 10 seconds, to cleanup the schedule.
I displayed 15 appointments.
I can provide a test project.
My schedule componant implement :
<schedule:SfSchedule x:Name="schedule"
ScheduleView="{Binding PlanningViewType, Converter={StaticResource
PlanningViewTypeToScheduleTypeConverter}}"
ShowAppointmentsInline="True"
Locale="fr"
FirstDayOfWeek="2"
Grid.Row="1" MoveToDate="{Binding DateSelected}"
SelectionStyle="{Binding StyleSelection}"
DataSource="{Binding Appointments, Mode=OneWay }"
ScheduleCellTapped="schedule_ScheduleCellTapped"
CellLongPressed="Schedule_CellDoubleTapped"
VisibleDatesChangedEvent="schedule_VisibleDatesChangedEvent">
<schedule:SfSchedule.DayViewSettings>
<schedule:DayViewSettings WorkStartHour="9"
WorkEndHour="18"
ShowAllDay="False">
</schedule:DayViewSettings>
</schedule:SfSchedule.DayViewSettings>
<schedule:SfSchedule.WeekViewSettings>
<schedule:WeekViewSettings WorkStartHour="9"
WorkEndHour="18"
ShowAllDay="False">
</schedule:WeekViewSettings>
</schedule:SfSchedule.WeekViewSettings>
<schedule:SfSchedule.AppointmentMapping>
<schedule:ScheduleAppointmentMapping SubjectMapping="Subject"
ColorMapping="BackgroundColor"
NotesMapping="Notes"
LocationMapping="Location"
StartTimeMapping="StartTime"
EndTimeMapping="EndTime" />
</schedule:SfSchedule.AppointmentMapping>
</schedule:SfSchedule>
And a callstack when I unload the schedule and I "break all" application :
Thanks,
Romain