我想向我的image view
显示某些arbitrary degrees tilted
而不是just simple straight
如何将其转换为倾斜显示?
请帮我。
编辑
这是目前的图像视图
我想要这样
我要倾斜(倾斜)的仅白色边框图像视图未平铺
最佳答案
只需设置imageView
的transform
属性:
// 10 degrees
imageView.transform = CGAffineTransformMakeRotation(M_PI / 180 * 10);
关于ios - 如何显示倾斜的imageview?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10394376/