http://stackoverflow.i2p/questions/72590512/uicontextmenuconfiguration-shows-multiple-table-view-rows
{ return UIContextMenuConfiguration ( identifier : nil , previewProvider : nil ) { _ in UIMenu ( title : " " , children : [ UIAction ( title : R . string . localizable . delete ( ) , image : UIImage ( systemName : " trash " ) , attributes : . destructive ) { _ in ... } ] ) } } In presented menu I have multiple items, which have animations between them, but I need only one selected. Sometimes it animated between two items, sometimes only one item appear(as expected). ios swift...