Hi there I am using the RadListView for Xamarin Forms and I'm encountering an error on iOS specifically.
In my scenario I give the user the option to remove a record from the list.
When I remove the last user from the collection bound to the list view I receive this error:
Xamarin.iOS: Received unhandled ObjectiveC exception: NSRangeException *** -[__NSArrayM objectAtIndexedSubscript:]: index 0 beyond bounds for empty array.
So it seems that the list view tries to view the first record of an empty list when the list is empty.
This issue is not occurring in my Android implementation.
Is there any solution to this issue.
Thanks for the help,
John