Any luck getting this fixed? I am seeing the same thing, only I am not using any of the betas.
Post
Replies
Boosts
Views
Activity
On iOS 14 you can determine if it is not from a right click when menuAppearance is UIContextMenuInteractionAppearanceRich and return nil. When you do this your long press gesture recognizer will still work.
(nullable UIContextMenuConfiguration *)contextMenuInteraction:(UIContextMenuInteraction *)interaction configurationForMenuAtLocation:(CGPoint)location API_AVAILABLE(ios(14.0)){
if (interaction.menuAppearance == UIContextMenuInteractionAppearanceRich) {
return nil;
}
		
		//Do what you want on right click
		 ...
I was able to get the menu by using NSMenuToolbarItem for my menu item and attaching a menu to it.
Like ddhuntsman I am also seeing this when trying to initialize an NSAttributedString. It just hangs.
let html = "Some HTML ..."
if let data = html.data(using: .utf8) {
		let attributedString = try? NSAttributedString(data: data, options: [.documentType: NSAttributedString.DocumentType.html], documentAttributes: nil)
Does anyone have a solution for this?