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]];