标签: ios uikit
我在屏幕上有一个矩形的角点,想要在这个矩形中放置一个UIImageView。
我希望它像这张照片:
实现这一目标的最佳途径是什么?
答案 0 :(得分:0)
我认为黑框是UIImageView,您正在尝试将其放置在屏幕中,如图所示。
UIImageView
您可以将图片视图放在故事板,xib或代码中,放在屏幕的右侧。然后旋转它。例如,下面的代码将imageview旋转20度。
float degrees = 20; //the value in degrees imageView.transform = CGAffineTransformMakeRotation(degrees * M_PI/180);