1. ホーム
  2. ios

[解決済み] iOSでシンプルなチェックボックスを作成するには?[重複あり]

2022-02-16 22:13:06

質問内容

<ブロッククオート

重複の可能性があります。
IPhoneアプリのチェックボックス

2つの値を持つ簡単なチェックボックスを作り、これを保存したいのですが、どうすればよいでしょうか?

ありがとうございます。

解決方法は?

そう、iOSではチェックボックスがないのです(-。

ほら、こうやってチェックボックスを作るんだよ。

UIButton *checkbox;
BOOL checkBoxSelected;
checkbox = [[UIButton alloc] initWithFrame:CGRectMake(x,y,20,20)];
// 20x20 is the size of the checkbox that you want
// create 2 images sizes 20x20 , one empty square and
// another of the same square with the checkmark in it
// Create 2 UIImages with these new images, then:

[checkbox setBackgroundImage:[UIImage imageNamed:@"notselectedcheckbox.png"]
                    forState:UIControlStateNormal];
[checkbox setBackgroundImage:[UIImage imageNamed:@"selectedcheckbox.png"]
                    forState:UIControlStateSelected];
[checkbox setBackgroundImage:[UIImage imageNamed:@"selectedcheckbox.png"]
                    forState:UIControlStateHighlighted];
checkbox.adjustsImageWhenHighlighted=YES;
[checkbox addTarget:(nullable id) action:(nonnull SEL) forControlEvents:(UIControlEvents)];
[self.view addSubview:checkbox];

次にターゲットメソッドで次のようにします。

-(void)checkboxSelected:(id)sender
{
    checkBoxSelected = !checkBoxSelected; /* Toggle */
    [checkbox setSelected:checkBoxSelected];
}

それだ!