For example, this code just shows a rectangle unrotated in a Playground
let view = UIView(frame: CGRect(x: 0, y: 0, width: 50, height: 150))
view.backgroundColor = UIColor.blue
view.transform = CGAffineTransform(rotationAngle: CGFloat(M_PI / 3))
When it should look like this:
The playground is giving you a preview of the view, not rendering it within another view. The transform property only affects the presentation layer of the view and not its actual bounds. If you want to see the transform add your transformed view to the playgrounds live view and look in the assistant editor on the right.