如何在目标c中制作单选按钮。我想在单击单选按钮时切换到不同的视图控制器。想制作简单的两个单选按钮。
答案 0 :(得分:2)
您需要将不同的图像设置为按钮,其状态为ViewDidLoad。
[yourbutton setImage: [UIImage imageNamed:@"Radio_button_off.png"]forState:UIControlStateNormal];
[yourbutton setImage: [UIImage imageNamed:@"Radio_button_on.png"]forState: UIControlStateSelected];
- (void) btnAction:(UIButton*)button{
button.selected = !button.selected;
}
答案 1 :(得分:1)
使用任何UIButton的选定/未选定状态。
使用setImage:forState
分配所选/未选择的无线电图像/
按下按钮时,迭代组中的所有按钮并将相应的按钮设置为选中。
就是这样!