Load an image from an asset catalog using UIImage.FromBundle(string imageName)
UIImage image = UIImage.FromBundle("ImageName");
// use the name of the image set from the asset catalog
You can use the image for a UIImageView
or anything else you need to do.