I'm trying to display some tiles UIImageViews with various orientations as follows:
let kOrientation:[UIImage.Orientation] = [
UIImage.Orientation.up,
UIImage.Orientation.upMirrored,
UIImage.Orientation.downMirrored,
UIImage.Orientation.down
]
// Construct the imageview
let cgimg = UIImage(named: "t (tile.fTileID)")!.cgImage
let image = UIImage(cgImage:cgimg!, scale: 1.0, orientation: kOrientation[tile.fOrient]) let iview = UIImageView(image:image)
tile.fView = iview
gMapView.addSubview(iview)
... but the image appears ONLY when the orientation is UIImage.Orientation.up. How do I get the image to appear at other orientations?