How to use UIButton as Toggle Button?(如何使用 UIButton 作为切换按钮?)
问题描述
我正在尝试为表格中的每个单元格创建一个切换按钮.按下时,它将更改图像,再次按下时将再次更改图像 - 切换.
I am trying to create a toggle button for each cell in my table. When pressed, it will change the image and when pressed again it will change the image again -- Toggle.
在 UIButton 类中,我看不到 selected 状态.
In the UIButton class I don't see a selected state.
我正在寻找一种使用 UIButton 创建切换按钮的方法,以便我可以更改每次单击时的状态.
I'm looking for a way to create a toggle button with UIButton so that I can change the state on each click.
这就是我现在在 rubymotion 中使用 rmq
This is how I'm doing it in rubymotion right now using rmq
@fav_button.on(:touch) do |sender|
puts "pressed fav button for id: " + data[:id] + " and name: " + data[:name]
#how do I change the state here?
end
推荐答案
您可以轻松创建切换按钮,您只需为各个状态设置相应的图像,然后就可以使用 selected属性在这些图像之间切换.
You can create toggle button easily, you just need to set respective images for respective states, after that, you can use the selected property to toggle between these images.
我制作了一个纯 Objective-c 代码来展示你如何做到这一点,但你也可以在 Storyboards 或 Xibs 中设置图像,查看:
I made a pure objective-c code to show how you can do that, but you can set the images anyway in Storyboards ou Xibs too, check out:
// First, set the images for normal state and selected state
[button setImage:normalImage forState:UIControlStateNormal];
[button setImage:selectedImage forState:UIControlStateSelected];
// Don't forget to add an action handler to toggle the selected property
[button addTarget:self action:@selector(buttonTouch:withEvent:) forControlEvents:UIControlEventTouchUpInside];
// Now, in your button action handler, you can do something like this:
- (void)buttonTouch:(UIButton *)aButton withEvent:(UIEvent *)event
{
aButton.selected = !aButton.selected;
}
希望对你有帮助.
这篇关于如何使用 UIButton 作为切换按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 UIButton 作为切换按钮?
基础教程推荐
- 可可/目标C(OSX不是iOS)从子对象访问父对象 2022-01-01
- 如何将多个组件添加到 PickerView? 2022-01-01
- - (CGRect)convertRect:(CGRect)rect toView:(UIView *)view 如何工作 2022-01-01
- 在 Android 模拟器中激活网络位置提供程序? 2022-01-01
- 在 appComponent dagger 2 中动态添加测试模块? 2022-01-01
- 我的 UIImageView 的任务 2022-01-01
- 新的@SystemApi 注解是什么意思,和@hide 有什么区别 2022-01-01
- 突出显示朗读文本(在 iPhone 的故事书类型应用程序中) 2022-01-01
- 在 iOS8 中无法获得正确的键盘高度值 2022-01-01
- Android:STATE_SELECTED不工作 2022-01-01
