Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 iPhone 上相机胶卷中的图像为自定义样式 UIButton 创建图像。该按钮具有圆形背景,并且有效地显示为圆形。现在我需要一个图像放在也出现圆形的按钮中间。
任何人都可以帮助我吗?
先感谢您
您必须设置按钮图层的圆角半径以使其为圆形。但是你不能准确地对图像做同样的事情。
您需要为您想要的状态设置 UIButton 的图像属性。但更重要的是确保图像也是圆形的。
图像不能是圆形的,但如果你使用 PNG,它支持透明度,所以有一个角透明的图像,这样图像看起来是圆形的。
btnImage = [UIImage imageNamed:@"image.png"]; [circularBtn setImage:btnImage forState:UIControlStateNormal];