I have a UICollectionView in the list style. I have cells that use UIListContentConfiguration. All this is set up in the normal way:
UIListContentConfiguration *contentConfig = cell.defaultContentConfiguration;
contentConfig.text = @"Bla text";
cell.contentConfiguration = contentConfig;
But I can't figure out how to make the text selectable on Mac Catalyst with the mouse? On iOS this is okay (though selectable text would be nice there too) but on Mac users would really expect the text to be selectable in this area of my app's UI. Is there anyway to configure this?
3
0
835