Load image from app bundle based on traitCollection

I need to load some images that are large so I do not want them cached, so I use UIImage(contentsOfFile:path).

I would like these images to be size class sensitive so ideally they would go into an asset catalog. But UIImage(contentsOfFile:path) does not work for images in asset catalogs. So I am including them in my app bundle. Is there a way to name the image files with size class markers, just like how we can tag with devices ~ipad or resolution @2x

Load image from app bundle based on traitCollection
 
 
Q