当我们点击栏按钮时,是否可以更改它的背景图像?
我有一个 barbuttonitem,我使用带有图像的自定义按钮对其进行了自定义。我想每次点击后改变这个图像。就像开和关一样。一旦我点击它,它将显示关闭图像。然后它会再次打开图像。
是否可以?
I have a barbuttonitem which i have customised using a custom button with an image. I want to change this image everytime after I click it. Like on and off. Once I click it it will show OFF image. Then again it will go ON image.
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。在您的目标方法中,只需更改 UIBarButtonItem
Yes. In your target method just change out the UIBarButtonItem
yourButton.image = [UIImage imageNamed:@"yourImage"];
UIBarItem 文档
yourButton.image = [UIImage imageNamed:@"yourImage"];
UIBarItem Documentation