如何使用 UIButton 作为切换按钮?

2023-07-08移动开发问题
20

本文介绍了如何使用 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 作为切换按钮?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

硬件音量按钮更改应用程序音量
Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)...
2024-08-12 移动开发问题
10

Cocos2d - 如何检查不同层中对象之间的交集
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)...
2024-08-12 移动开发问题
8

恢复游戏 cocos2d
Resume game cocos2d(恢复游戏 cocos2d)...
2024-08-12 移动开发问题
6

突出显示朗读文本(在 iPhone 的故事书类型应用程序中)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))...
2024-08-12 移动开发问题
9

Cocos2D + 仅禁用 Retina iPad 图形
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)...
2024-08-12 移动开发问题
10

正确的 cocos2d 场景重启?
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)...
2024-08-12 移动开发问题
7