var
AItem: TTMSFMXTableViewItem;
begin
AItem := MyTableView.SelectedItem;
if Assigned(AItem) then
begin
MyTableView.BeginUpdate;
try
AItem.Destroy;
...
When I execute this code on Android I get an access violation with the AItem.Destroy. Obviously I am not deleting the item correctly. Can you please tell me what I need to change. Thanks!