iOS中文字体斜体效果

var testLabel = UILable(frame: CGRect(x: 100, y: 100, width: 200, height: 40))

testLabel.backgroundColor = UIColor.clear

testLabel.text = "斜体"

let matrix = CGAffineTransformMake(1, 0, tanf(-20 * (CGFloat)M_PI / 180), 1, 0, 0)

testLabel.transform = matrix

self.view.addSubview(testLabel)

其中-20是用来控制字体倾斜角度的

你可能感兴趣的:(swift)