web-dev-qa-db-ja.com

押されたときにUIButtonのタイトルを取得する方法

次のコードで、UIButtonが押されたUIButtonタイトルが何であるかを見つけようとしています。

viewDidLoadで、ボタンのタイトルは次を使用してコンソールに出力されます。

        NSLog(@"The button title is %@ ", btn.titleLabel.text);

代わりにボタンを押したときにこのタイトルを取得したいと思います。

助けてくれてありがとう

:)

// Create buttons for the sliding category menu.
        NSMutableArray* buttonArray = [NSMutableArray array];
        NSArray * myImages = [NSArray arrayWithObjects:@"category-cafe-unsel.png", @"category-food-unsel.png", @"category-clothing-unsel.png", @"category-health-unsel.png", @"category-tech-unsel_phone.png" , @"category-tech2-unsel.png", @"catefory-theatre-unsel.png", @"category-travel-unsel.png", nil];

        // only create the amount of buttons based on the image array count
        for(int i = 0;i < [myImages count]; i++)
        {
            // Custom UIButton

            btn = [UIButton buttonWithType:UIButtonTypeCustom];

            [btn setFrame:CGRectMake(0.0f, 20.0f, 52.0f, 52.0f)];
            [btn setTitle:[NSString stringWithFormat:@"Button %d", i] forState:UIControlStateNormal];
            [btn setImage:[UIImage imageNamed:[myImages objectAtIndex:i]] forState:UIControlStateNormal];

            NSLog(@"The button title is %@ ", btn.titleLabel.text);

            [btn addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
            [buttonArray addObject:btn];

            NSLog(@"Button tag is: %d",btn.tag);

        }
11
hanumanDev

あなたの行動で:

- (void) buttonPressed:(UIButton*) sender {
    NSLog(@"The button title is %@",sender.titleLabel.text);
}

編集:またはコメントどおりIulian:sender.currentTitleですが、nilの可能性があります。Michaelのコメントを参照してください。

24
Zaphod

あなたはどこかに機能を持っているべきです...

- (void)buttonPressed:(id)sender

これを中に入れるだけ...

- (void)buttonPressed:(id)sender
{
    UIButton *someButton = (UIButton*)sender;

    NSLog(@"The button title is %@ ", [someButton titleForState:UIControlStateNormal]);

    //You should also be able to use...
    //NSLog(@"The button title is %@ ", someButton.titleLabel.text);
}
11
Fogmeister
NSString * strButtonTitle = [btnButton titleForState:state];

ここでの状態:

UIControlStateNormal,
UIControlStateHighlighted,
UIControlStateDisabled,
UIControlStateSelected,
UIControlStateFocused,
UIControlStateApplication,
UIControlStateReserved

あなたの要件のために

NSString * strButtonTitle = [btnButton titleForState:UIControlStateSelected];

これは、プログラム内の任意の時点でボタンのさまざまな状態のタイトルを取得するための方法です...しかし、Zaphodからの質問の回答に基づいて良いです。

4
user4993619