このコードを使用して、iphone アプリケーションでプログラムで UIButton を作成しました。
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[view addSubview:button];
ここでやりたいことは、このボタンをタッチして (最初のアクション) 非表示のラベルを表示し、離すと別のビューに移動することです (2 番目のアクション)。誰でも私がそれに近づくのを助けることができますか? ありがとう。