The same context menu is displayed the different order. Xcode 12, iOS 14 beta 3

I have a button on UICollectionViewCell and set a context menu to this button. However, the context menu gets reversed when I scroll this cell to bottom and open context menu again.

Code Block language
self.moreButton is a UIButton.
self.moreButton.showsMenuAsPrimaryAction = YES;
    self.moreButton.menu = [UIMenu menuWithTitle:@"title" children:@[renameAction, deleteAction, shareAction]];


The same context menu is displayed the different order. Xcode 12, iOS 14 beta 3
 
 
Q