我需要你的建议:我想知道如何在uiimageview中设置uibutton的背景图像。
也就是说,如果我触摸按钮,按钮的背景图像应该设置在uiimageview上。
有可能吗?如果是,那怎么办?

最佳答案

UIImage *image = self.myButton.currentBackgroundImage;

Apple Documentation for UIButton

07-24 12:53